Bug#711454: [php-maint] Bug#711454: libapache2-mod-php5: MPM prefork not found ... ==> ... Syntax error on line 9 of /etc/apache2/mods-enabled/php5.conf: Invalid command 'Order'

2013-06-06 Thread Ondřej Surý
reassign 711454 apache2
affects 711454 +php5
thank you

Hi apache2 maintainers,

there seems to be a glitch in the apache2 scripts or transition manual, which 
prevents MPM to be switched before the apache2 is configured.

It looks like I will need to Pre-Depend on apache2 >= 2.4 for the transition 
period from 2.2 to 2.4.

That's also probably something which would be better places in dh helper to add 
replacement for ${apache2:Pre-Depends} which I would place into Pre-Depends:, 
so it can be dropped automatically when no longer needed.

Ondřej Surý

On 7. 6. 2013, at 0:45, Andreas Beckmann  wrote:

> Package: libapache2-mod-php5
> Version: 5.5.0~rc2+dfsg-2
> Severity: important
> Control: affects -1 + typo3-dummy
> 
> Hi,
> 
> while doing piuparts upgrade tests to sid I noticed the following:
> 
> (libapache2-mod-php5):
>  apache2_switch_mpm: MPM prefork not found
>  Could not switch to prefork, not enabling php5
> 
> (apache2):
>  AH00526: Syntax error on line 9 of /etc/apache2/mods-enabled/php5.conf:
>  Invalid command 'Order', perhaps misspelled or defined by a module not 
> included in the server configuration
> 
> a bit more context, full log attached:
> 
>  Setting up php5-common (5.5.0~rc2+dfsg-2) ...
>  Installing new version of config file /etc/cron.d/php5 ...
> 
>  Creating config file /etc/php5/mods-available/opcache.ini with new version
>  Setting up libapache2-mod-php5 (5.5.0~rc2+dfsg-2) ...
>  Replacing config file /etc/php5/apache2/php.ini with new version
>  apache2_switch_mpm: MPM prefork not found
>  Could not switch to prefork, not enabling php5
>  Setting up apache2-data (2.4.4-5) ...
>  Setting up apache2 (2.4.4-5) ...
>  Installing new version of config file /etc/logrotate.d/apache2 ...
>  Installing new version of config file /etc/init.d/apache2 ...
>  Installing new version of config file /etc/apache2/envvars ...
>  Installing new version of config file /etc/apache2/mods-available/dir.conf 
> ...
>  Installing new version of config file 
> /etc/apache2/mods-available/mime_magic.conf ...
>  Installing new version of config file 
> /etc/apache2/mods-available/include.load ...
>  Installing new version of config file 
> /etc/apache2/mods-available/autoindex.conf ...
>  Installing new version of config file /etc/apache2/mods-available/ldap.conf 
> ...
>  Installing new version of config file 
> /etc/apache2/mods-available/authz_dbm.load ...
>  Installing new version of config file /etc/apache2/mods-available/cgid.conf 
> ...
>  Installing new version of config file 
> /etc/apache2/mods-available/userdir.conf ...
>  Installing new version of config file /etc/apache2/mods-available/ssl.load 
> ...
>  Installing new version of config file /etc/apache2/mods-available/alias.conf 
> ...
>  Installing new version of config file 
> /etc/apache2/mods-available/setenvif.conf ...
>  Installing new version of config file 
> /etc/apache2/mods-available/dav_fs.conf ...
>  Installing new version of config file 
> /etc/apache2/mods-available/proxy_balancer.load ...
>  Installing new version of config file 
> /etc/apache2/mods-available/authz_groupfile.load ...
>  Installing new version of config file 
> /etc/apache2/mods-available/reqtimeout.conf ...
>  Installing new version of config file /etc/apache2/mods-available/ssl.conf 
> ...
>  Installing new version of config file 
> /etc/apache2/mods-available/negotiation.conf ...
>  Installing new version of config file 
> /etc/apache2/mods-available/deflate.conf ...
>  Installing new version of config file /etc/apache2/mods-available/info.conf 
> ...
>  Installing new version of config file 
> /etc/apache2/mods-available/proxy_ftp.conf ...
>  Installing new version of config file 
> /etc/apache2/mods-available/actions.conf ...
>  Installing new version of config file 
> /etc/apache2/mods-available/status.conf ...
>  Installing new version of config file 
> /etc/apache2/mods-available/proxy_balancer.conf ...
>  Installing new version of config file 
> /etc/apache2/mods-available/authz_user.load ...
>  Installing new version of config file /etc/apache2/mods-available/mime.conf 
> ...
>  Installing new version of config file /etc/apache2/mods-available/asis.load 
> ...
>  Installing new version of config file 
> /etc/apache2/mods-available/authz_host.load ...
>  Installing new version of config file /etc/apache2/mods-available/proxy.conf 
> ...
>  Installing new version of config file 
> /etc/apache2/mods-available/deflate.load ...
>  Installing new version of config file /etc/apache2/apache2.conf ...
>  Installing new version of config file /etc/apache2/ports.conf ...
>  Installing new version of config file /etc/default/apache2 ...
>  Installing new version of config file /etc/cron.daily/apache2 ...
>  Removing obsolete conffile /etc/apache2/mods-available/authz_default.load ...
>  Removing obsolete conffile /etc/apache2/mods-available/authn_default.load ...
>  Removing obsolete conffile /etc/apache2/mods-available/mem_cache.load ...
>  Removing obsolete 

Bug#711459: nuitka: can't import Python 3.2 modules: ImportError: dynamic module does not define init function

2013-06-06 Thread Kay Hayen


Hello Jakub,

thank you for the report. I confirmed the bug indeed. Python is right here:

nm Mini.so  | grep PyInit
b5b0 t PyInit_Mini

The "t" in lower case means it's a local text symbol, i.e. it is not 
exported.


Using CCFLAGS="-save-temps", I check the produced C++ code behind the 
preprocessor:


grep PyInit module.Mini.ii

extern "C" PyObject* PyInit_Mini( void );
extern "C" PyObject* PyInit_Mini( void )

It seems related to -fvisibility=hidden, the problem goes away which I 
remove that (from SingleExe.scons), one probably can override it from 
CCFLAGS too.


Trying to get it what is used with Python2:

extern "C" PyObject* __attribute__(( visibility( "default" ))) 
PyInit_Mini( void );
extern "C" PyObject* __attribute__(( visibility( "default" ))) 
PyInit_Mini( void )


gives this:

Mini.build/module.Mini.hpp:7:82: warning: ‘visibility’ attribute ignored 
on non-class types [-Wattributes]
Mini.build/module.Mini.cpp:225:82: warning: ‘visibility’ attribute 
ignored on non-class types [-Wattributes]


And of course, still won't work.

Unfortunately, the test, which is run at build time, to ensure that 
compiling modules works properly (and seems to compile them), is still 
working, i.e. there is also an error in


tests/reflected/compile_itself.py

that prevented me from detecting it. I will analyse this some more, and 
try to come up with a fix.


However, using "nuitka --execute", it's also supposed to give you a 
warning, as it's a trap, but only if it sees you use "__main__". It's 
very likely though, that a user wants "nuitka --exe --execute" or rather 
"nuitka-python" instead.


But this only as a side issue, in case your minimal test case, is not 
the reduction of a actual use. Thanks again for the report.


I do have some hope, that the placement of the attribute is at fault, 
because with Python2, this gives "T":


extern "C" void __attribute__(( visibility( "default" ))) initMini( void );
extern "C" void __attribute__(( visibility( "default" ))) initMini( void )

But that needs further research (over the weekend). Will keep you updated.

Thanks,
Kay Hayen


Am 07.06.2013 02:10, schrieb Jakub Wilk:

Package: nuitka
Version: 0.4.3+ds-1

I cannot import modules that were compiled for Python 3.2:

$ echo 'print(42)' > testcase.py
$ nuitka --python-version=3.2 --execute testcase.py
Traceback (most recent call last):
File "", line 1, in 
ImportError: dynamic module does not define init function (PyInit_testcase)


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

Kernel: Linux 3.9-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages nuitka depends on:
ii g++-4.6 4.6.4-2
ii python 2.7.3-5
ii python-dev 2.7.3-5
ii scons 2.3.0-2




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



Bug#711476: ITP: multi2sim -- CPU-GPU Simulator for Heterogeneous Computing

2013-06-06 Thread William Panlener
Package: wnpp
Severity: wishlist
Owner: William Panlener 

* Package name: multi2sim
  Version : 4.1.0
  Upstream Author : Rafael Ubal 
* URL : http://www.multi2sim.org/
* License : (GPL-3)
  Programming Lang: (C)
  Description : CPU-GPU Simulator for Heterogeneous Computing

 Multi2Sim is a simulation framework for CPU-GPU heterogeneous computing written
 in C. It includes models for superscalar, multithreaded, and multicore CPUs,
 as well as GPU architectures.


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



Bug#711475: libsecret-tools: package description fails the "should I install this package?" test

2013-06-06 Thread Helmut Grohne
Package: libsecret-tools
Version: 0.15-2
Severity: minor

Dear Maintainer,

The long descriptions of all packages built from the libsecret source
package are unusually short. For libsecret-tools it is even shorter. A
user with little clue about what is going on in the gnome world will be
unable to judge whether libsecret-tools is useful for her. So the long
description fails at one of its major tasks.

I suggest that you add a common paragraph to all packages built from
libsecret. It should explain what part of credentials management the
library solves.

For the libsecret-tools package some guidance of whether a prospective
user would install this package would be good. Maybe listing some of the
tools contained would be useful here.

Helmut


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



Bug#682397: suggests should be enough

2013-06-06 Thread anarcat
Darktable already builds for OpenCL support in Debian. This is what I
get after installing ocl-icd-libopencl1:

anarcat@marcos:~$ darktable -d opencl
[opencl_init] opencl related configuration options:
[opencl_init]
[opencl_init] opencl: 0
[opencl_init] opencl_library: ''
[opencl_init] opencl_memory_requirement: 768
[opencl_init] opencl_memory_headroom: 300
[opencl_init] opencl_device_priority: '*/!0,*/*/*'
[opencl_init] opencl_size_roundup: 16
[opencl_init] opencl_async_pixelpipe: 0
[opencl_init] opencl_synch_cache: 0
[opencl_init] opencl_number_event_handles: 25
[opencl_init] opencl_micro_nap: 1000
[opencl_init] opencl_avoid_atomics: 0
[opencl_init] opencl_omit_whitebalance: 0
[opencl_init]
[opencl_init] trying to load opencl library: ''
[opencl_init] opencl library 'libOpenCL' found on your system and loaded
[opencl_init] could not get platforms: -1001
[opencl_init] FINALLY: opencl is NOT AVAILABLE on this system.
[opencl_init] initial status of opencl enabled flag is OFF.

It says not available because there are no OpenCL libraries for Intel on
Debian, because they are non-free software (not even distributable). And
anyways, i would need 1GB+ of video RAM, which I really don't have here.

See also:

http://lists.debian.org/debian-devel/2012/06/msg01108.html

A.
-- 
Si Dieu est, l'homme est esclave ; 
or l'homme peut, doit être libre, donc Dieu n'existe pas.
Et si Dieu existait, il faudrait s'en débarrasser!
- Michel Bakounine


signature.asc
Description: Digital signature


Bug#711474: linux-image-3.9-1-amd64: backlight brightness on Dell XPS13 is no longer changeable

2013-06-06 Thread Jan De Luyck
Package: src:linux
Version: 3.9.4-1
Severity: normal

Dear Maintainer,

After upgrading to 3.9, I can't reliably set the backlight on my Dell XPS13
anymore. using i915.backlight=vendor doesn't work either.

Using the patch listed at
https://bugzilla.kernel.org/attachment.cgi?id=97751, bug
https://bugzilla.kernel.org/show_bug.cgi?id=47941 comment 83, turns things
back into a workable state.

Please consider applying. I've rolled my own kernel with this patch for now.


-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
sys_vendor: Dell Inc.
product_name: Dell System XPS L322X
product_version:
chassis_vendor: Dell Inc.
chassis_version: 0.1
bios_vendor: Dell Inc.
bios_version: A08
board_vendor: Dell Inc.
board_name: 0WW7PG
board_version: A00

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 3rd Gen Core processor DRAM
Controller [8086:0154] (rev 09)
Subsystem: Dell Device [1028:058b]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- 

00:02.0 VGA compatible controller [0300]: Intel Corporation 3rd Gen Core
processor Graphics Controller [8086:0166] (rev 09) (prog-if 00 [VGA
controller])
Subsystem: Dell Device [1028:058b]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR-  [disabled]
Capabilities: 
Kernel driver in use: i915

00:14.0 USB controller [0c03]: Intel Corporation 7 Series/C210 Series
Chipset Family USB xHCI Host Controller [8086:1e31] (rev 04) (prog-if 30
[XHCI])
Subsystem: Dell Device [1028:058b]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- 
Kernel driver in use: xhci_hcd

00:16.0 Communication controller [0780]: Intel Corporation 7 Series/C210
Series Chipset Family MEI Controller #1 [8086:1e3a] (rev 04)
Subsystem: Dell Device [1028:058b]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: mei_me

00:1a.0 USB controller [0c03]: Intel Corporation 7 Series/C210 Series
Chipset Family USB Enhanced Host Controller #2 [8086:1e2d] (rev 04)
(prog-if 20 [EHCI])
Subsystem: Dell Device [1028:058b]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- 
Kernel driver in use: ehci-pci

00:1b.0 Audio device [0403]: Intel Corporation 7 Series/C210 Series Chipset
Family High Definition Audio Controller [8086:1e20] (rev 04)
Subsystem: Dell Device [1028:058b]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: snd_hda_intel

00:1c.0 PCI bridge [0604]: Intel Corporation 7 Series/C210 Series Chipset
Family PCI Express Root Port 1 [8086:1e10] (rev c4) (prog-if 00 [Normal
decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- TAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: 
Kernel driver in use: pcieport

00:1d.0 USB controller [0c03]: Intel Corporation 7 Series/C210 Series
Chipset Family USB Enhanced Host Controller #1 [8086:1e26] (rev 04)
(prog-if 20 [EHCI])
Subsystem: Dell Device [1028:058b]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- 
Kernel driver in use: ehci-pci

00:1f.0 ISA bridge [0601]: Intel Corporation QS77 Express Chipset LPC
Controller [8086:1e56] (rev 04)
Subsystem: Dell Device [1028:058b]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- 
Kernel driver in use: lpc_ich

00:1f.2 SATA controller [0106]: Intel Corporation 7 Series Chipset Family
6-port SATA Controller [AHCI mode] [8086:1e03] (rev 04) (prog-if 01 [AHCI
1.0])
Subsystem: Dell Device [1028:058b]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- 
Kernel driver in use: ahci

00:1f.3 SMBus [0c05]: Intel Corporation 7 Series/C210 Series Chipset Family
SMBus Controller [8086:1e22] (rev 04)
Subsystem: Dell Device [1028:058b]
Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR-

Bug#682426: gs using excessive memory, triggers kswapd storm

2013-06-06 Thread Bastien ROUCARIES
Control: tag -1 more info

Could you join the PDF?
Le 6 juin 2013 22:09, "Dominique Brazziel"  a écrit :

>  I have been hit extremely hard by this bug for about a month
> or two now, but it certainly wasn't present in the past.  On my
> system the GUI completely freezes, the clock on the top panel stops
> on the second after CUPS/Ghostscript/hpcups start doing their thing,
> and all mouse and keyboard events are ignored.  Remote ssh sessions
> become are unresponsive as well, so monitoring the system (htop, top,
> etc.) is not possible.  The hang lasts for anywhere from 5 to 20 minutes
> for just a 3 page pdf.
>
>  I suspected high disk usage and review of the sysstat logs
> (sar -d -p) confirmed extremely large average disk queue sizes, on the
> order of 2000-6000 and sometimes higher.  Review of kernel logs shows
> the kernel hung task process being executed as tasks have been
> unresponsive for more than 2 minutes.
>
>  One helpful tracker of what is happening is the atop monitor
> which dumps data to it's log at 10 minute intervals.  By going
> through chronologically until the interval in which the print
> job was active I was able to see average disk queues leading up
> to the time the job was active and the interval the job was active.
> The default display shows kswapd occupying 16% of the CPU and
> dozens of processes in uninterruptable sleep state (D).  gs was not
> running at this point, but by changing the display to show memory usage,
> I see virtual and real memory growth and size of 150M and 116M
> respectively.   The iceweasel (firefox) process with ~15 tabs open
> has virtual memory size of 1 gig but about 55M of real memory
> and shrinking, as are the 8 to 10 chromium processes.
>
>  I think there is a problem with kswapd on this kernel
> (V3.8.2-686-PAE), and I have a relatively small system (1 gig RAM),
> but 116 megs of real memory seems like a lot to print a small
> html/text document and Fedora (17, 18) on the same hardware platform
> (Intel Atom N270 w/1 gig of RAM) doesn't experience this extreme
> stress or hang.
>
>  I will check the version of ghostscript on Fedora and try and
> recreate the problem with a similar memory load (i.e. firefox and
> many chromium processes) and see what happens.
>
>
> --
> To UNSUBSCRIBE, email to debian-printing-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmas...@lists.debian.org
> Archive: http://lists.debian.org/1370549104.11049.23.ca...@asusb202.mba
>
>


Bug#711473: opensm: wrong pid in pidfile (/var/run/opensm-0x..........)

2013-06-06 Thread Vincent Kersten
Package: opensm
Version: 3.2.6-20090317-2.1
Severity: normal

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

   * What led up to the situation?
Upgrading the package, using start/stop in /etc/init.d
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
Manually change the pid in the pid file, so daemon shut down and upgrade could 
continue.
   * What was the outcome of this action?
   * What outcome did you expect instead?

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


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

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

Versions of packages opensm depends on:
ii  infiniband-diags  1.4.4-20090314-1.2
ii  libc6 2.13-38
ii  libibcommon1  1.1.2-20090314-1
ii  libibumad11.2.3-20090314-1.1
ii  libopensm23.2.6-20090317-2.1

opensm recommends no packages.

opensm suggests no packages.

-- no debconf information

--

De informatie opgenomen in dit bericht kan vertrouwelijk zijn en is
uitsluitend bestemd voor de geadresseerde. Indien u dit bericht onterecht
ontvangt, wordt u verzocht de inhoud niet te gebruiken en de afzender direct
te informeren door het bericht te retourneren. Het Universitair Medisch
Centrum Utrecht is een publiekrechtelijke rechtspersoon in de zin van de W.H.W.
(Wet Hoger Onderwijs en Wetenschappelijk Onderzoek) en staat geregistreerd bij
de Kamer van Koophandel voor Midden-Nederland onder nr. 30244197.

Denk s.v.p aan het milieu voor u deze e-mail afdrukt.

--

This message may contain confidential information and is intended exclusively
for the addressee. If you receive this message unintentionally, please do not
use the contents but notify the sender immediately by return e-mail. University
Medical Center Utrecht is a legal person by public law and is registered at
the Chamber of Commerce for Midden-Nederland under no. 30244197.

Please consider the environment before printing this e-mail.


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



Bug#654400: icedove crashes after copying mails with invalid haeader to cyrus imap

2013-06-06 Thread Carsten Schoenert
Hello Wolfgang,

On Tue, Jan 03, 2012 at 01:39:07PM +0100, Wolfgang Schnitker wrote:
> Package: icedove
> Version: 3.0.11-1+squeeze6
> Severity: normal
> 
> Copying mail from local storage to a IMAP build on Cyrus.
> if there is an invalid header, Icedove stops copying gives an error from the
> server that there is an invailid header detected.
> After that Icedove crashes.

what about that issue with current versions of Icedove? Which Cyrus
version is/was running? If the error is happen with recent versions to,
can you make log of what's happen between Icedove and Cyrus?

http://wiki.debian.org/Icedove#Debugging_of_Filesystem_Activity
http://wiki.debian.org/Icedove#Debugging_Icedove_Activity

Regards
Carsten


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



Bug#711272: closed by Stig Sandbeck Mathisen (Re: [Packaging] Bug#711272: Bug#711272: munin should depend libcgi-fast-perl)

2013-06-06 Thread Steve Schnepp
Le 7 juin 2013 01:08, "raylu"  a écrit :
> libapache2-mod-fcgid only works for apache2; those of us running some
> other httpd still need libcgi-fast-perl.

Actually, libcgi-fast-perl is a Perl CPAN lib to be inside a fastcgi
container. So it is needed for any httpd.

I recommend to have it as a Depends, as it should not depend on other
packages, and that enables to switch to CGI without installing more
packages (for munin).

An elegant possibility is the way EPEL did it : via a dedicated munin-cgi
package, that has the correct deps for CGI.

Steve


Bug#710876: [ITR] templates://ircd-hybrid/{ircd-hybrid.templates}

2013-06-06 Thread Christian PERRIER
Dear Debian maintainer,

The Debian internationalisation team and the Debian English
localisation team will soon begin the review of the debconf
templates used in ircd-hybrid.

This review takes place for all packages that use debconf to interact with
users and its aims are:
- to improve the use of English in all debconf templates;
- to make the wording of debconf templates more consistent;
- to encourage more translations of templates.

Even if your first language is English, this process is likely to help
track down typos or errors, and improve consistency between the
debconf templates of your package and that of other packages in the
distribution.

The process involves both debian-l10n-english contributors and
Debian translators.

The details of the process are given in
http://wiki.debian.org/I18n/SmithDebconfReviewProcess.

I will act as the coordinator of this activity for ircd-hybrid.

The first step of the process is to review the debconf source
template file(s) of ircd-hybrid. This review will start on Monday, June 10, 
2013, or
as soon as you acknowledge this mail with an agreement for us to
carry out this process.

All parts of the process will be carried out in close collaboration
with you, and, unless you explicitely ask for it, no upload nor NMU
will happen for ircd-hybrid.

If you approve this process, please let us know by replying to this
mail. If some work in progress on your side would conflict with such a
rewrite (such as adding or removing debconf templates), please say so,
and we will defer the review to later in the development cycle.

Thank you for your attention.

-- 




signature.asc
Description: Digital signature


Bug#711363: rt-tests: hackbench does not work in stable on armhf

2013-06-06 Thread Alexander Reichle-Schmehl

Hi!

Am 2013-06-06 23:15, schrieb Uwe Kleine-König:

> It is not in 0.84. Can you fix this in stable, please?
> armel seems not to be affected.
fwiw, as unstable also has 0.83, it would need to be fixed there 
first.

Yeah, I have a 0.84-1 package in the queue and I'm already nagging my
sponsor.


I'll try to upload it this weekend.


Best regards,
  Alexander


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



Bug#643255: proguard package

2013-06-06 Thread tony mancill
On 06/06/2013 09:51 AM, Sam Clegg wrote:
> On 06/05/2013 09:24 PM, tony mancill wrote:
>> Hello Sam,
>>
>> Would you be opposed to an NMU of proguard to update it to a newer
>> version and to address the FTBFS error?  Or perhaps to the packaging
>> being moved to collaborative maintenance under the Debian Java team?
>>
>> The current version is blocking the transition to OpenJDK7.
> 
> If you have an NMU ready to go then please go ahead.
> 
> I'm happy to take look today.

Great - I have built and uploaded the package to DELAYED-5.  That will
give you a bit of time to look at it and let me know if you'd like it
removed from the upload queue.  I'll be traveling some over the weekend,
but will check mail when possible (and in plenty of time to cut the
upload if you're not happy with it).

> If you think it makes sense to move to collaborative maintenance
> with the Java team I'd be happy to consider that.  What exactly
> would be involved in doing that?

The packaging would be pulled into either a git or svn repository
(preferably git) and then added to the pkg-java repository where members
of the Java team would have write access to the packaging repo.  You
would be listed as an Uploader, but as the maintainer all members of the
Java team would be copied on bug reports, etc.

Cheers,
tony



signature.asc
Description: OpenPGP digital signature


Bug#711368: [Debian-in-workers] Bug#711368: Bug#711368: fonts-taml: unmet dependencies

2013-06-06 Thread Kartik Mistry
On Thu, Jun 6, 2013 at 10:42 PM, Vasudev Kamath  wrote:
> Thanks for the report it looks like I accidentally renamed the binary
> for src:fonts-lohit-taml-classical as fonts-lohit-tamil-classical so
> I've 2 options now rename the fonts-lohit-tamil-classical to be as
> fonts-lohit-taml-classical or fix the dependency on fonts-taml.
>
> Can you please suggest which will be good option? I'm open for
> suggestions.

Please fix name!

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com


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



Bug#707212: tt-rss: Wrong syntax in logrotate script

2013-06-06 Thread David Smith


After the patch, the logrotate actually compresses the tt-rss logfile 
properly.  So the patch is definitely an improvement... Although I get 
an e-mail to root about the tt-rss daemon restarting everyday :).


-David




Also, when running tt-rss with the update2 daemon (forking) as configued 
in /etc/default/tt-rss. I get an additional warning from logrotate about 
the file size changing while zipping.


/etc/cron.daily/logrotate:
Forking!
Restarting Tiny Tiny RSS update daemon: tt-rss.
gzip: stdin: file size changed while zipping


-David


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



Bug#711471: RFP: tlp -- Power management tool for Linux. It brings you the benefits of advanced power management without the need to understand every technical detail.

2013-06-06 Thread Andres Cimmarusti
Package: wnpp
Severity: wishlist

* Package name: tlp
  Version : 0.3.9
  Upstream Author : Thomas Koch 
* URL : http://linrunner.de/en/tlp/tlp.html
* License : GPLv2
  Programming Lang: Bash
  Description : Power management tool for Linux. It brings you the benefits 
of advanced power management without the need to understand every technical 
detail.

TLP implements advanced power management for Linux. TLP is a pure command line 
tool with
automated background tasks. It does not contain a GUI.

Settings depending on the power source ac/bat:
- Kernel laptop mode and dirty buffer params
- Processor frequency scaling including "turbo boost" / "turbo core"
- Power aware process scheduler for multi-core/hyper-threading
- Hard disk advanced power magement level and spin down timeout (per disk)
- SATA aggressive link power management (ALPM)
- PCIe active state power management (PCIe ASPM) - Kernel 2.6.35 and above
- Runtime power management for PCI(e) bus devices - Kernel 2.6.35 and above
- Radeon graphics KMS power management - Kernel 2.6.35 and above, not fglrx
- Wifi power saving mode - depending on kernel/driver
- Power off optical drive in drive bay (on battery)

Additional functions:
- I/O scheduler (per disk)
- USB autosuspend with blacklist (input devices excluded automatically)
- Audio power saving mode - hda_intel, ac97
- Enable or disable integrated radio devices upon system startup and shutdown
- Restore radio device state on system startup (from previous shutdown).
- Radio device wizard: switch radios upon network connect/disconnect and 
dock/undock
- Disable Wake On LAN
- Integrated wwan state is restored after suspend/hibernate
- Untervolting of Intel processors - requires kernel with PHC-Patch
- Battery charge thresholds - ThinkPads only
- Recalibrate battery - ThinkPads only

All TLP settings are stored in /etc/default/tlp. The default configuration
provides optimized power saving out of the box.

Read the the full documentation at:
- http://linrunner.de/tlp

Or take a look at the manpages:
- tlp
- tlp-stat (display tlp status and active settings)
- wifi, bluetooth, wwan (switch wireless devices on/off)
- run-on-ac, run-on-bat


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



Bug#711470: ath9k_htc updated firmware for firmware-linux-free

2013-06-06 Thread Teg Skywalker
Package: firmware-linux-free
Version: 3.2

The current firmware-linux-free package does not contain free firmware for the 
certain Atheros chipsets. Recently, the htc_7010.fw and htc_9721.fw firmwares 
were updated by Atheros and re-released under a free software license. This 
would invoke the removal of the non-free firmwares from the firmware-atheros 
package as well.

More information at 
https://www.fsf.org/news/ryf-ce.rtification-thinkpenguin-usb-with-atheros-chip.

Recent firmware files can be obtained from 
http://jxself.org/ath9k-htc/version-1.3.2/ or from the source at 
https://github.com/qca/open-ath9k-htc-firmware. Please consider updating these 
two firmware files in a package update for Wheezy and above when possible.

I am using Debian GNU/Linux 7 with kernel 3.2.0.4   
  

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



Bug#711227: Proposed patch

2013-06-06 Thread Cyril Lacoux
On Thu, Jun 06, 2013 at 09:22:26PM -0300, R. Lemos wrote:
> Compiles and works (actually sending this mail through it).
> 
> I am not sure of since which kernel version it should apply (I've set
> to KERNEL_VERSION >= 3, 9, 0)

Hi,

Thanks for the patch, this is the same as the one I used :-)

I'm waiting for my sponsor to upload the new version, what shoud happen
today, I hope!

Cheers,
-- 
Cyril Lacoux


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



Bug#711469: Can we have libslapi-dev back please:

2013-06-06 Thread Peter Chubb
Package: libldap2-dev
Version: 2.4.31-1+nmu

I can no longer compile my old slapi plugins.  Can we please have
slapi-dev back in some form?

It's been gone since this comment:
openldap2.3 (2.4.7-2) unstable; urgency=low

  * Temporarily drop slapi-dev from the package to get through NEW; this
functionality should be readded later, either by restoring the slapi-dev
package or by moving it to libldap2-dev, depending on the outcome of
discussion with the ftp-masters.

Slapd still provides libslapi but there are no header files or
development libraries.

--
Dr Peter Chubb  peter.chubb AT nicta.com.au
http://www.ssrg.nicta.com.au  Software Systems Research Group/NICTA


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



Bug#629245: I believe I'm being affected by this bug.

2013-06-06 Thread David Nielson
On one VirtualBox instance, I compiled linux-image and linux-headers 
packages. They install just fine on that machine. I copied them to 
another VirtualBox machine set up basically the same, and it would not 
install successfully. It says it can't be installed because it depends 
on itself, and it's not installed. (lol)


[root]@[debserver][22:40:26][~]# dpkg -i 
linux-headers-3.9.4-debserver_3.9.4-debserver-10.00.Custom_amd64.deb


Selecting previously unselected package linux-headers-3.9.4-debserver.
(Reading database ... 58155 files and directories currently installed.)
Unpacking linux-headers-3.9.4-debserver (from 
linux-headers-3.9.4-debserver_3.9.4-debserver-10.00.Custom_amd64.deb) ...

Setting up linux-headers-3.9.4-debserver (3.9.4-debserver-10.00.Custom) ...
Examining /etc/kernel/header_postinst.d.
run-parts: executing /etc/kernel/header_postinst.d/dkms 3.9.4-debserver 
/boot/vmlinuz-3.9.4-debserver

Error! Your kernel headers for kernel 3.9.4-debserver cannot be found.
Please install the linux-headers-3.9.4-debserver package,
or use the --kernelsourcedir option to tell DKMS where it's located

Questions:

- Can you provide more information about the workaround?

- Is there any way I (as a non-coder) can accelerate this bug getting fixed?

Thanks,

David Nielson


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



Bug#338221: This bug is still present, and worse than it seems

2013-06-06 Thread Bas Wijnen
unarchive 338221
found 338221 0.68.2-1
severity 338221 important
thanks

I got bitten by this bug without doing any manual editing.  What
happened?  I changed some settings using courierwebadmin.  Then I
upgraded the package.  There was a new version of the configfile, which
I didn't install.  It was put in the directory with the .dpkg-dist
extension.  That triggered this bug.

IMO this is quite a lot worse than a wishlist bug, because it hits users
who didn't do anything wrong.  This means it is hard to find the problem
and thus "has a major effect on the usability of a package".  Therefore
I'm marking it important.  The proper solution would be for courier to
specify a filename format which excludes backup files such as the one
this bug was about and the one from dpkg.  Such a format could be "only
letters, numbers and underscores".

If there are other places where courier uses .dpkg-dist files as valid
config files, that would be a bug as well; those files are installed
there for convenience after the administrator has explicitly stated that
they don't want to use them.  This is obviously a Debian issue, but
upstream may agree that ignoring such "extra" files is a good idea in
general.

Thanks,
Bas


signature.asc
Description: Digital signature


Bug#711468: modules.5: Have an example

2013-06-06 Thread Regid Ichira
Package:  kmod
Version:  9-3
Severity: wishlist
Tags: patch
File: /usr/share/man/man5/modules.5.gz

  The following patch add an example file:

--- modules.5   2013-06-07 05:21:17.849492132 +0300
+++ modules.5.new   2013-06-07 05:20:30.0 +0300
@@ -8,6 +8,17 @@ The
 file contains the names of kernel modules that are to be loaded at boot
 time, one per line. Arguments can be given in the same line as the module
 name. Lines beginning with a '#' are ignored. 
+.SH "EXAMPLE"
+# /etc/modules: kernel modules to load at boot time.
+#
+# This file contains the names of kernel modules that
+# should be loaded at boot time, one per line. Lines
+# beginning with "#" are ignored.
+
+w83781d
+
+3c509 irq=15
+nf_nat_ftp 
 .SH "SEE ALSO"
 .BR depmod (8)
 .BR modprobe (8)


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



Bug#695892: RFS: new powertop version

2013-06-06 Thread Paul Wise
On Fri, Jun 7, 2013 at 1:50 AM, Julian Wollrath wrote:

> W: powertop source: outdated-autotools-helper-file config.guess
> 2012-02-10
> W: powertop source: outdated-autotools-helper-file config.sub 2012-02-10
> But I do not know, what the best way, with cdbs as build system, would
> be to get rid of these warnings, so I just ignored them but if you have
> an idea, tell me and I fix the warnings.

You should read the full info for the tag:

lintian-info -t outdated-autotools-helper-file
http://lintian.debian.org/tags/outdated-autotools-helper-file.html

Two things:

Ask upstream to use the latest upstream autotools when building their tarballs.

Add autotools-dev too your build-deps, cdbs should automatically
update these files.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Bug#711467: Acknowledgement (please add .go to the files being checked for license/copyright information)

2013-06-06 Thread Yaroslav Halchenko
tags -1 +pending
thanks

forgotten that it is under collab-maint, pushed the "fix"

-- 
Yaroslav O. Halchenko, Ph.D.
http://neuro.debian.net http://www.pymvpa.org http://www.fail2ban.org
Senior Research Associate, Psychological and Brain Sciences Dept.
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik


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



Bug#711467: please add .go to the files being checked for license/copyright information

2013-06-06 Thread Yaroslav Halchenko
Package: devscripts
Version: 2.13.2
Severity: normal
File: /usr/bin/licensecheck
Tags: patch

not sure if we have any package in the archive (at least build-rdeps golang is
empty) but there are already ITPs for such projects (e.g. for lxc-docker), so
it would be nice to have a check in place.
Patch is trivial:

$> diff -Naur /usr/bin/licensecheck /tmp/licensecheck
--- /usr/bin/licensecheck   2013-05-12 23:10:27.0 -0400
+++ /tmp/licensecheck   2013-06-06 21:59:05.501102085 -0400
@@ -160,7 +160,7 @@
 $default_ignore_regex =~ s/^#.*$//mg;
 $default_ignore_regex =~ s/\n//sg;
 
-my $default_check_regex = 
'\.(c(c|pp|xx)?|h(h|pp|xx)?|f(77|90)?|p(l|m)|xs|sh|php|py(|x)|rb|java|vala|el|sc(i|e)|cs|pas|inc|dtd|xsl|mod|m|tex|mli?)$';
+my $default_check_regex = 
'\.(c(c|pp|xx)?|h(h|pp|xx)?|f(77|90)?|go|p(l|m)|xs|sh|php|py(|x)|rb|java|vala|el|sc(i|e)|cs|pas|inc|dtd|xsl|mod|m|tex|mli?)$';
 
 my $modified_conf_msg;
 


-- Package-specific info:

--- /etc/devscripts.conf ---

--- ~/.devscripts ---
DEBSIGN_KEYID=75C024C8
DEBUILD_ROOTCMD=fakeroot
DEBUILD_DPKG_BUILDPACKAGE_OPTS="-i -ICVS -I.svn"
DEBUILD_LINTIAN=yes
DSCVERIFY_KEYRINGS=~/.gnupg/pubring.gpg
USCAN_SYMLINK=no
USCAN_DESTDIR=~/deb/tarballs
USCAN_SYMLINK=rename

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (900, 'testing'), (600, 'unstable'), (300, 'experimental'), (100, 
'stable'), (100, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages devscripts depends on:
ii  dpkg-dev  1.16.10
ii  libc6 2.17-3
ii  perl  5.14.2-21
ii  python3   3.2.3-7

Versions of packages devscripts recommends:
ii  at3.1.13-2
ii  curl  7.30.0-2
ii  dctrl-tools   2.23
ii  debian-keyring2013.04.21
ii  dput  0.9.6.3+nmu2
ii  dupload   2.7.0
ii  equivs2.0.9
ii  fakeroot  1.18.4-2
ii  gnupg 1.4.12-7
ii  libcrypt-ssleay-perl  0.58-1
ii  libdistro-info-perl   0.10
ii  libencode-locale-perl 1.03-1
ii  libjson-perl  2.57-1
ii  libparse-debcontrol-perl  2.005-3
ii  libsoap-lite-perl 0.714-1
ii  liburi-perl   1.60-1
ii  libwww-perl   6.04-1
ii  lintian   2.5.13
ii  man-db2.6.3-6
ii  patch 2.6.1-3
ii  patchutils0.3.2-1.1
pn  python3-debian
pn  python3-magic 
ii  sensible-utils0.0.7
ii  strace4.5.20-2.3
ii  unzip 6.0-9
ii  wdiff 1.1.2-1
ii  wget  1.14-1
ii  xz-utils  5.1.1alpha+20120614-2

Versions of packages devscripts suggests:
ii  bsd-mailx [mailx]8.1.2-0.2006cvs-1
ii  build-essential  11.6
pn  cvs-buildpackage 
pn  devscripts-el
ii  gnuplot  4.6.3-1
ii  libauthen-sasl-perl  2.1500-1
ii  libfile-desktopentry-perl0.04-3
ii  libnet-smtp-ssl-perl 1.01-3
ii  libterm-size-perl0.207-1
ii  libtimedate-perl 1.2000-1
ii  libyaml-syck-perl1.20-1
ii  mutt 1.5.21-6.2
ii  openssh-client [ssh-client]  1:6.2p2-3
ii  svn-buildpackage 0.8.5
ii  w3m  0.5.3-8

-- 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#711466: base: I/O error on sr0 On Boot with Audio CD In Tray

2013-06-06 Thread michael
Package: base
Severity: normal

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

Booting with audio CD in tray leads to;
dmesg
10.919603] sr 1:0:0:0: [sr0] CDB: Read(10): 28 00 00 00 00 00 00 00 02 00 
[ 10.919613] end_request: I/O error, dev sr0, sector 0 
[ 10.921385] sr 1:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE 
[ 10.921390] sr 1:0:0:0: [sr0] Sense Key : Illegal Request [current] 
[ 10.921395] sr 1:0:0:0: [sr0] Add. Sense: Illegal mode for this track 
[ 10.921401] sr 1:0:0:0: [sr0] CDB: Read(10): 28 00 00 00 00 00 00 00 02 00 
[ 10.921411] end_request: I/O error, dev sr0, sector 0 
[ 10.922931] sr 1:0:0:0: [sr0] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE 
[ 10.922935] sr 1:0:0:0: [sr0] Sense Key : Illegal Request [current] 
[ 10.922940] sr 1:0:0:0: [sr0] Add. Sense: Illegal mode for this track 
[ 10.922946] sr 1:0:0:0: [sr0] CDB: Read(10): 28 00 00 00 00 00 00 00 02 00

fstab set to 'noauto'

/etc/fstab: static file system information. 
# 
# Use 'blkid' to print the universally unique identifier for a 
# device; this may be used with UUID= as a more robust way to name devices 
# that works even if disks are added and removed. See fstab(5). 
# 
# 
proc /proc proc defaults 0 0 
# / was on /dev/sda8 during installation 
UUID=5fe1d929-be85-4f6e-b0d4-49883d0124e6 / ext4 errors=remount-ro 0 1 
# swap was on /dev/sda5 during installation 
UUID=4c6ec8ff-0cc7-448f-93db-0cb1dac1eaad none swap sw 0 0 
/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0 
/dev/sdb1 /media/usb0 auto rw,user,noauto 0 0 

Removing CD solves issue. noauto should have prevented this behavior.

Thank you.


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

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


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



Bug#706060: so how is ITP going?

2013-06-06 Thread Yaroslav Halchenko
Hi Daniel, Hi Ops,

I wonder if you are still interested to finalize packaging for the
upload to proper Debian?  

I see that PPA has some packages (check lintian *.dsc for minor
tweeks TODO; also probably there is no reason for duplicate
{,src/}github.com/docker; copyright seems to be missing info on
./src/github.com/gorilla/; may be more...) -- but is there anything
holding you up really? ;)

Cheers,
-- 
Yaroslav O. Halchenko, Ph.D.
http://neuro.debian.net http://www.pymvpa.org http://www.fail2ban.org
Senior Research Associate, Psychological and Brain Sciences Dept.
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik


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



Bug#702258: xscreensaver: clutters up ~/tmp

2013-06-06 Thread Jamie Zawinski
> Jamie Zawinski wrote:
>> That's a completely reasonable place to put it.
> 
> No, it's annoying and it violates the FHS.  Dot-files have to be created
> in ~/ , not in ~/somewhere/ .

You're welcome to your opinion, but my opinion differs, so I'm not going to 
change it.


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



Bug#711465: munin-plugins-core: diskstats_latency doesn't handle wraparounds correctly

2013-06-06 Thread Tim Connors
Package: munin-plugins-core
Version: 2.0.6-4
Severity: normal

With mail notifications turned on, I frequently get these
notifications for latency on all devices:

To: munin
Subject: Munin notification weinberg

weinberg :: weinberg :: Disk latency per device :: Average latency for 
/dev/base/root
WARNINGs: Write IO Wait time is -248.17 (outside range [0:1]).
OKs: Read IO Wait time is 0.02.

I presume it's a wraparound, and 5 minutes later I get the clear
message.  Unfortunately, there are a lot of devices, so I get these
bogus notifications quite frequently.

Also, there seems to be missing documentation about how to configure
the warning threshold in plugins.conf.  I've tried various permutations of
[diskstats]
env.latency.*warning [-300:1] etc, but nothing has yet worked for me.


-- System Information:
Debian Release: 7.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (5, 'testing'), (2, 
'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages munin-plugins-core depends on:
ii  munin-common  2.0.6-4
ii  perl  5.14.2-21

Versions of packages munin-plugins-core recommends:
ii  libnet-snmp-perl  6.0.1-2

Versions of packages munin-plugins-core suggests:
pn  libnet-netmask-perl   
pn  libnet-telnet-perl
ii  python2.7.3-4
ii  ruby  1:1.9.3
ii  ruby1.8 [ruby-interpreter]1.8.7.358-7
ii  ruby1.9.1 [ruby-interpreter]  1.9.3.194-8.1

-- no debconf information


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



Bug#709400: Acknowledgement (qscintilla2: FTBFS on hppa -- ‘class QsciLexerCSS’ has no member named ‘setHSSLanguage’)

2013-06-06 Thread John David Anglin

Problem is installed libqscintilla2-dev package conflicts with build.

--
John David Anglin   dave.ang...@bell.net


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



Bug#711233: [Pkg-fonts-devel] Bug#711233: ITP: fonts-ebgaramond -- EB Garamond OpenType and TrueType fonts

2013-06-06 Thread Scott Howard
On Thu, Jun 6, 2013 at 12:52 AM, Christian PERRIER  wrote:
> Hello Scott,
>
> Do you plan to move the git repo in pkg-fonts on Alioth?
>

Yes, I applied for membership to pkg-fonts. I'm not a member of
scm-pkg-fonts so I don't believe I can put something there yet.


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



Bug#711463: fail2ban: new default iptables action

2013-06-06 Thread Yaroslav Halchenko
> It seems in the new upsteram version "REJECT --reject-with 
> icmp-port-unreachable"
> is the default iptables action, instead of DROP.

yeap

> a) Is this reasonable? I mean it causes further packages to be sent, possibly 
> even
> resulting in kinda DoS.

reasoning: https://github.com/fail2ban/fail2ban/pull/215

could you describe a good recipe for such a DoS which would not be
possible really with DROP?


> b) Shouldn't such a change be documented in NEWS.Debian?

yeah -- probably it should have been... I will add for a new revision
whenever upload, thus will keep this report open

Cheers,
-- 
Yaroslav O. Halchenko, Ph.D.
http://neuro.debian.net http://www.pymvpa.org http://www.fail2ban.org
Senior Research Associate, Psychological and Brain Sciences Dept.
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik


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



Bug#711464: fail2ban: add ::1 to ignoreip?

2013-06-06 Thread Christoph Anton Mitterer
Package: fail2ban
Version: 0.8.9-1
Severity: normal
Tags: upstream


Hi.

Because of the new ssh-iptables-ipset6 jail I had the impression fail2ban
would now also support IPv6? If so, shouldn't we/upstream add ::1 to ignoreip?

Cheers,
Chris.


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



Bug#711463: fail2ban: new default iptables action

2013-06-06 Thread Christoph Anton Mitterer
Package: fail2ban
Version: 0.8.9-1
Severity: normal


Hi.

It seems in the new upsteram version "REJECT --reject-with 
icmp-port-unreachable"
is the default iptables action, instead of DROP.

a) Is this reasonable? I mean it causes further packages to be sent, possibly 
even
resulting in kinda DoS.

b) Shouldn't such a change be documented in NEWS.Debian?


Cheers,
Chris.


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



Bug#711462: tex-common: updmap-sys fails; missing map files

2013-06-06 Thread Norbert Preining
Hi Calum,

On Fr, 07 Jun 2013, Calum Mackay wrote:
> ERROR:  The following map file(s) couldn't be found:
> classicovn.map (in /etc/texmf/web2c/updmap.cfg)
> dayroman.map (in /etc/texmf/web2c/updmap.cfg)
> garamondvn.map (in /etc/texmf/web2c/updmap.cfg)
> nectec.map (in /usr/share/texmf/web2c/updmap.cfg)
> nf.map (in /usr/share/texmf/web2c/updmap.cfg)
> tlwg.map (in /usr/share/texmf/web2c/updmap.cfg)
> ua1.map (in /etc/texmf/web2c/updmap.cfg)
> ugm.map (in /etc/texmf/web2c/updmap.cfg)
> ul9.map (in /etc/texmf/web2c/updmap.cfg)
> ulg.map (in /etc/texmf/web2c/updmap.cfg)
> uop.map (in /etc/texmf/web2c/updmap.cfg)
> webo.map (in /etc/texmf/web2c/updmap.cfg)
> zgm.map (in /etc/texmf/web2c/updmap.cfg)

So did you activate these maps? It seems that you have added
some maps to the config files which are not present.

This is nothing the tex-common pakcage can solve. 

> I have nothing in the mentioned dir:
> 
> $ find /etc/texmf/updmap.d
> /etc/texmf/updmap.d

BUt did you edit /etc/texmf/web2c/updmap.cfg by hand? Or with
calls to
updmap-sys --enable ...
?

How to solve:
* first the wrong maps in /etc/texmf/web2c/updmap.cfg
  please edit the file and see if it contains something *you* have 
  put there on purpose. Otherwise it is fine to remove. No need
  for this file.

* the remaining maps in /usr/share/texmf/web2c/updmap.cfg
  nectec.map, nf.map, tlwg.map
  these maps should be activated in 
/usr/share/texlive/texmf-dist/web2c/updmap.cfg
  and are shipped in the package
texlive-lang-other
  Do you have any packages related to fonts-tlwg, thailatex or similar
  installed?

>   deb http://people.debian.org/~preining/TeX/ tl2013/

Irrelevant, all these packages are uploaded and in the main archive.

> Am I missing something obvious?

Two things: one is the /etc/texmf/web2c/updmap.cfg that contains
bogus entries *we* = tex-common did *never* create. If you
have installed some local packages, then removed them, but kept the
map files, there is nothing to do.

The other item is concerning the map files from the thai* packages,
here might be a bug with respect to the transition.

Norbert


PREINING, Norbert   http://www.preining.info
JAIST, Japan TeX Live & Debian Developer
DSA: 0x09C5B094   fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094



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



Bug#711462: tex-common: updmap-sys fails; missing map files

2013-06-06 Thread Calum Mackay
Package: tex-common
Version: 4.03
Severity: important

Dear Maintainer,

Apologies if this is already known, but it seemed different to the known
issues I've seen logged, which appear to be fixed.

My upgrade to TL2013 didn't go well, because of:

$ sudo dpkg --configure tex-common
Setting up tex-common (4.03) ...
Running mktexlsr. This may take some time... done.
Running updmap-sys. This may take some time... 
updmap-sys failed. Output has been stored in
/tmp/updmap.Ym6Lp4ll
Please include this file if you report a bug.

Sometimes, not accepting conffile updates in /etc/texmf/updmap.d
causes updmap-sys to fail.  Please check for files with extension
.dpkg-dist or .ucf-dist in this directory

dpkg: error processing tex-common (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 tex-common


$ sudo cat /tmp/updmap.Ym6Lp4ll
updmap is using the following updmap.cfg files (in precedence order):
  /etc/texmf/web2c/updmap.cfg
  /usr/share/texmf/web2c/updmap.cfg
  /usr/share/texlive/texmf-dist/web2c/updmap.cfg
updmap is using the following updmap.cfg file for writing changes:
  /etc/texmf/web2c/updmap.cfg
dvips output dir: "/var/lib/texmf/fonts/map/dvips/updmap"
pdftex output dir: "/var/lib/texmf/fonts/map/pdftex/updmap"
dvipdfmx output dir: "/var/lib/texmf/fonts/map/dvipdfmx/updmap"
pxdvi output dir: "/var/lib/texmf/fonts/map/pxdvi/updmap"

ERROR:  The following map file(s) couldn't be found:
classicovn.map (in /etc/texmf/web2c/updmap.cfg)
dayroman.map (in /etc/texmf/web2c/updmap.cfg)
garamondvn.map (in /etc/texmf/web2c/updmap.cfg)
nectec.map (in /usr/share/texmf/web2c/updmap.cfg)
nf.map (in /usr/share/texmf/web2c/updmap.cfg)
tlwg.map (in /usr/share/texmf/web2c/updmap.cfg)
ua1.map (in /etc/texmf/web2c/updmap.cfg)
ugm.map (in /etc/texmf/web2c/updmap.cfg)
ul9.map (in /etc/texmf/web2c/updmap.cfg)
ulg.map (in /etc/texmf/web2c/updmap.cfg)
uop.map (in /etc/texmf/web2c/updmap.cfg)
webo.map (in /etc/texmf/web2c/updmap.cfg)
zgm.map (in /etc/texmf/web2c/updmap.cfg)

Did you run mktexlsr?

You can disable non-existent map entries using the option
  --syncwithtrees.


I have nothing in the mentioned dir:

$ find /etc/texmf/updmap.d
/etc/texmf/updmap.d


I tried enabling:

deb http://people.debian.org/~preining/TeX/ tl2013/

but that did not result in any pkg upgrades.


Am I missing something obvious?

thanks much indeed.

cheers,
calum.



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

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

Versions of packages tex-common depends on:
ii  debconf [debconf-2.0]  1.5.50
ii  dpkg   1.16.10
ii  ucf3.0027

tex-common recommends no packages.

Versions of packages tex-common suggests:
ii  debhelper  9.20130605

Versions of packages texlive-base depends on:
ii  debconf [debconf-2.0]  1.5.50
ii  dpkg   1.16.10
ii  libpaper-utils 1.1.24+nmu2
ii  luatex 0.76.0-2
ii  texlive-binaries   2013.20130529.30792-1
ii  ucf3.0027
ii  xdg-utils  1.1.0~rc1+git20111210-7

Versions of packages texlive-base recommends:
iu  lmodern  2.004.4-3

Versions of packages texlive-base suggests:
ii  evince [postscript-viewer]   3.4.0-3.1
ii  ghostscript [postscript-viewer]  9.05~dfsg-6.3
ii  gv [postscript-viewer]   1:3.7.3-1
ii  perl-tk  1:804.031-1
pn  xpdf-reader | pdf-viewer 

Versions of packages texlive-binaries depends on:
ii  dpkg1.16.10
ii  install-info5.1.dfsg.1-3
ii  libc6   2.17-5
ii  libcairo2   1.12.14-4
ii  libfontconfig1  2.9.0-7.1
ii  libfreetype62.4.9-1.1
ii  libgcc1 1:4.8.1-2
ii  libgraphite2-3  1.2.2-2
ii  libgs9  9.05~dfsg-6.3
ii  libicu484.8.1.1-12
ii  libkpathsea62013.20130529.30792-1
ii  libpixman-1-0   0.26.0-4
ii  libpng12-0  1.2.49-4
ii  libpoppler190.18.4-6
ii  libptexenc1 2013.20130529.30792-1
ii  libstdc++6  4.8.1-2
ii  libx11-62:1.5.0-1+deb7u1
ii  libxaw7 2:1.0.10-2
ii  libxmu6 2:1.1.1-1
ii  libxpm4 1:3.5.10-1
ii  libxt6  1:1.1.3-1+deb7u1
ii  perl5.14.2-21
ii  zlib1g  1:1.2.8.dfsg-1

Versions of packages texlive-binaries recommends:
ii  luatex  0.76.0-2
ii  python  2.7.3-5
ii  ruby1:1.9.3
ii  ruby1.8 [ruby]  1.8.7.358-7
ii  texlive-base2013.20130530-1
ii  tk8.5 [wish]8.5.11-2

-- debconf information:
  texlive-base/texconfig_ignorant:
  tex-common/check_texmf_wrong:
  texlive-base/binary_chooser: pdftex, dvips, dvipdfmx, xdvi
  tex-common/chec

Bug#576802: gnumeric: font size set not respected when opening file

2013-06-06 Thread Dmitry Smirnov
On Fri, 7 Jun 2013 05:37:04 arne anka wrote:
> i'd really appreciate some information, why upstream does not consider
> this a bug.

Sorry, perhaps I had to include this information to "close email".
The explanation is already logged here:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576802#10

I'm quoting it here for your convenience:

Of course Gnumeric respects the font size. Excel files contained font
size information that is being respected by Gnumeric. The size you set
in Edit->Preferences only applies when there is no otherwise specified
font size, ie. when you create a new document or open a file type
without font size information, eg. a cvs file or so.

So this is NOTABUG.
 
I hope it makes sense.

Regards,
 Dmitry Smirnov
 GPG key : 4096R/53968D1B


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



Bug#710590: Problem related to lensfun update

2013-06-06 Thread Rasmus Bøg Hansen
I get a message to stderr that points at liblensfun - that was updated 
few days ago:


traps: ufraw[18862] general protection ip:7f790ea524be sp:7fff14eaf120 
error:0 in liblensfun.so.0.2.7.0[7f790ea3f000+19000]


It seems from above that a rebuild is sufficient. However an update 
would be really nice, of course.


--
Rasmus Bøg Hansen || http://www.zz9.dk/
mo...@zz9.dk  ||


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



Bug#701322: [Debian-med-packaging] Bug#701322: Bug#701322: Brief update on this bug (ftbfs with GCC-4.8)

2013-06-06 Thread Dmitrijs Ledkovs
On 6 June 2013 09:22, Dmitrijs Ledkovs  wrote:
> On 6 June 2013 01:02, Charles Plessy  wrote:
>> Le Wed, Jun 05, 2013 at 09:34:04AM +0900, Charles Plessy a écrit :
>>>
>>>  - there is a patch for building with a recent BOOST in Ubuntu, which looks
>>>needed to build on unstable but is not sufficient.
>>>  - the new stable upstream release need further work on BOOST (maybe 
>>> something
>>>trivial like updating build dependancies), so I did not have time to see 
>>> if
>>>the failure related to GCC is still present there.
>>>
>>> I also did not have time to try the development version.
>>
>> Thanks Thorsten for upgrading the package.
>>
>> I am puzzled by the build failure in Unstable.  Do we miss 
>> build-dependancies,
>> or could it be related to the changes in the default parameters for the C
>> linker ?
>>
>> 
>> http://wiki.debian.org/ToolChain/DSOLinking#Not_resolving_symbols_in_indirect_dependent_shared_libraries
>>
>

All fixed in svn trunk now. Builds correctly with gcc4.8 & either
current boost or boost1.53.

Regards,

Dmitrijs.


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



Bug#710184: pu: package mozc/1.5.1090.102-4+deb7u1

2013-06-06 Thread Nobuhiro Iwamatsu
Hi,

I just upload. Thank you.

Nobuhiro

2013/6/7 Adam D. Barratt :
> Control: tags -1 + confirmed
>
> On Wed, 2013-05-29 at 07:39 +0900, Nobuhiro Iwamatsu wrote:
> +mozc (1.5.1090.102-4+deb7u1) stable; urgency=low
> +
> +  * Fix connect error to mozc-server if it is root using uim-mozc.
> +Add patches/fix-root-issue-at-uim.patch. (Closes: #708608)
> +  * Update debian/rules.
> +Fix install path of mo file for fcitx-mozc. (Closes: #705573 )
> +  * Update debian/control.
> +Add mozc-data to tegaki-zinnia-japanese to Depends of fcitx-mozc.
> +Add mozc-utils-gui to Recommends of fcitx-mozc. (Closes: #705572)
> +  * Remove debian/fcitx-mozc.install. This became unnecessary by other fixes.
>
> Please go ahead.
>
> Regards,
>
> Adam
>



-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


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



Bug#711227: Proposed patch

2013-06-06 Thread R. Lemos
Compiles and works (actually sending this mail through it).

I am not sure of since which kernel version it should apply (I've set
to KERNEL_VERSION >= 3, 9, 0)


broadcom-sta-dkms.patch
Description: Binary data


Bug#711460: xfce4-mixer: changing sound volume not working after muting

2013-06-06 Thread caodg
Package: xfce4-mixer
Version: 4.10.0-2
Severity: normal

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

   * What led up to the situation?

After upgrading to xfce 4.10, when changing the sound volume in xfce
audio mixer panel, mute first, then changing to a normal volume level, 
there is no sound output. It is shown that the PulseAudio Mixer is
still muted.

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

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


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

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

Versions of packages xfce4-mixer depends on:
ii  gstreamer0.10-alsa [gstreamer0.10-audiosink]  0.10.36-1.1
ii  gstreamer0.10-plugins-bad [gstreamer0.10-audiosink]   0.10.23-7.1
ii  gstreamer0.10-plugins-base0.10.36-1.1
ii  gstreamer0.10-plugins-good [gstreamer0.10-audiosink]  0.10.31-3+nmu1
ii  gstreamer0.10-pulseaudio [gstreamer0.10-audiosink]0.10.31-3+nmu1
ii  libatk1.0-0   2.8.0-2
ii  libc6 2.17-3
ii  libcairo2 1.12.14-4
ii  libdbus-1-3   1.6.10-1
ii  libdbus-glib-1-2  0.100.2-1
ii  libfontconfig12.9.0-7.1
ii  libfreetype6  2.4.9-1.1
ii  libgdk-pixbuf2.0-02.28.1-1
ii  libglib2.0-0  2.36.1-2build1
ii  libgstreamer-plugins-base0.10-0   0.10.36-1.1
ii  libgstreamer0.10-00.10.36-1.2
ii  libgtk2.0-0   2.24.18-1
ii  libkeybinder0 0.3.0-2
ii  libpango1.0-0 1.32.5-5+b1
ii  libunique-1.0-0   1.1.6-4
ii  libxfce4ui-1-04.10.0-2
ii  libxfce4util6 4.10.1-1
ii  libxfconf-0-2 4.10.0-2
ii  libxml2   2.8.0+dfsg1-7+nmu1
ii  xfce4-panel   4.10.1-1

xfce4-mixer recommends no packages.

xfce4-mixer 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#711459: nuitka: can't import Python 3.2 modules: ImportError: dynamic module does not define init function

2013-06-06 Thread Jakub Wilk

Package: nuitka
Version: 0.4.3+ds-1

I cannot import modules that were compiled for Python 3.2:

$ echo 'print(42)' > testcase.py
$ nuitka --python-version=3.2 --execute testcase.py
Traceback (most recent call last):
  File "", line 1, in 
ImportError: dynamic module does not define init function (PyInit_testcase)


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

Kernel: Linux 3.9-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages nuitka depends on:
ii  g++-4.6 4.6.4-2
ii  python  2.7.3-5
ii  python-dev  2.7.3-5
ii  scons   2.3.0-2

--
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#711346: bugs.debian.org: should recognize multiline URL's with dash+newline

2013-06-06 Thread Vincent Lefevre
On 2013-06-06 14:18:58 -0700, Don Armstrong wrote:
> Perhaps only using this method if the URL on the line is more than 60
> characters long and less than 110 characters long will be enough to
> catch most cases.

Yes, but 60 may be a bit too large.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


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



Bug#711457: python-qt4: insufficient build-depends

2013-06-06 Thread Scott Kitterman
It was introduced in 3.2.3-8.


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



Bug#711458: ITP: ruby-rinku -- autolinker for Ruby

2013-06-06 Thread Per Andersson
Subject: ITP: ruby-rinku -- autolinker for Ruby
Package: wnpp
Owner: Per Andersson 
Severity: wishlist

* Package name: ruby-rinku
  Version : 1.7.3
  Upstream Author : Vicent Marti 
* URL : http://github.com/vmg/rinku
* License : ISC
  Programming Lang: C, Ruby
  Description : autolinker for Ruby

 Rinku is a Ruby library that does autolinking.
 .
 It parses text and turns anything that remotely resembles a link into an HTML
 link, just like the Ruby on Rails `auto_link` method -- but it's about 20
 times faster, because it's written in C, and it's about 20 times smarter when
 linking, because it does actual parsing instead of RegEx replacements.


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



Bug#707286: initramfs-tools: [confirmed] initramfs-tools + linux-3.9.4 = no boot

2013-06-06 Thread Chris H
Package: initramfs-tools
Version: 0.109.1
Followup-For: Bug #707286


Confirming this bug in wheezy with linux-3.9.4. My fix:

--- /usr/share/initramfs-tools/scripts/local~   2011-09-04 11:08:50.0 
-0700
+++ /usr/share/initramfs-tools/scripts/local2013-06-06 16:21:08.707260079 
-0700
@@ -2,12 +2,12 @@
 
 pre_mountroot()
 {
+   sleep 1
+
[ "$quiet" != "y" ] && log_begin_msg "Running /scripts/local-top"
run_scripts /scripts/local-top
[ "$quiet" != "y" ] && log_end_msg
 
-   wait_for_udev 10
-
# Load ubi with the correct MTD partition and return since fstype
# doesn't work with a char device like ubi.
if [ -n "$UBIMTD" ]; then




-- Package-specific info:
-- initramfs sizes
-- /proc/cmdline
BOOT_IMAGE=/vmlinuz-3.9.4-lucid root=/dev/mapper/wztest1-root ro quiet 
elevator=deadline cgroup_enable=memory

-- resume
RESUME=/dev/mapper/wztest1-swap_1
-- /proc/filesystems
ext4
ext2

-- lsmod
Module  Size  Used by
ip6table_filter12540  0 
ip6_tables 22050  1 ip6table_filter
ebtable_nat12580  0 
ebtables   26253  1 ebtable_nat
ipt_REJECT 12502  2 
xt_CHECKSUM12471  1 
iptable_mangle 12536  1 
xt_tcpudp  12570  5 
iptable_filter 12536  1 
ip_tables  22036  2 iptable_filter,iptable_mangle
x_tables   19041  9 
ip6table_filter,xt_CHECKSUM,ip_tables,xt_tcpudp,iptable_filter,ebtables,ipt_REJECT,iptable_mangle,ip6_tables
bridge 72504  0 
stp12437  1 bridge
llc12822  2 stp,bridge
nfsd  192109  13 
auth_rpcgss29398  1 nfsd
nfs_acl12511  1 nfsd
nfs   105996  0 
lockd  55577  2 nfs,nfsd
fscache37519  1 nfs
sunrpc160467  23 nfs,nfsd,auth_rpcgss,lockd,nfs_acl
ext2   59601  1 
vhost_net  27704  0 
tun22518  2 vhost_net
macvtap17638  1 vhost_net
macvlan18028  1 macvtap
loop   22908  0 
snd_hda_codec_hdmi 31576  1 
acpi_cpufreq   13317  0 
mperf  12453  1 acpi_cpufreq
kvm_amd47626  0 
snd_hda_codec_realtek32006  1 
kvm   316100  1 kvm_amd
radeon638890  1 
snd_hda_intel  31301  0 
ttm58542  1 radeon
snd_hda_codec 122569  3 
snd_hda_codec_realtek,snd_hda_codec_hdmi,snd_hda_intel
drm_kms_helper 31837  1 radeon
snd_hwdep  13189  1 snd_hda_codec
drm   208239  3 ttm,drm_kms_helper,radeon
edac_mce_amd   17070  0 
ehci_pci   12472  0 
snd_pcm68523  3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
pcspkr 12632  0 
processor  28422  1 acpi_cpufreq
edac_core  43502  0 
sp5100_tco 12864  0 
i2c_algo_bit   12841  1 radeon
i2c_piix4  12660  0 
button 12944  0 
thermal_sys22879  1 processor
i2c_core   24040  5 drm,i2c_piix4,drm_kms_helper,i2c_algo_bit,radeon
snd_page_alloc 13018  2 snd_pcm,snd_hda_intel
snd_timer  22812  1 snd_pcm
snd53077  7 
snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_hda_codec,snd_hda_intel
microcode  30176  0 
soundcore  13026  1 snd
k10temp12664  0 
evdev  17650  9 
shpchp 31346  0 
ext4  406050  1 
crc16  12343  1 ext4
jbd2   80811  1 ext4
mbcache13082  2 ext2,ext4
dm_mod 64002  10 
sg 26095  0 
sr_mod 21988  0 
cdrom  35212  1 sr_mod
sd_mod 40549  3 
crc_t10dif 12348  1 sd_mod
ohci_hcd   26678  0 
ehci_hcd   40464  1 ehci_pci
ata_generic12490  0 
pata_atiixp12838  0 
usbcore   134791  3 ohci_hcd,ehci_hcd,ehci_pci
usb_common 12354  1 usbcore
r8169  52743  0 
ahci   25148  2 
mii12675  1 r8169
libahci23136  1 ahci
libata141721  4 ahci,libahci,ata_generic,pata_atiixp
scsi_mod  162613  4 sg,libata,sd_mod,sr_mod

-- /etc/initramfs-tools/modules

-- /etc/kernel-img.conf
# Kernel image management overrides
# See kernel-img.conf(5) for details
do_symlinks = yes
do_bootloader = no
do_initrd = yes
link_in_boot = no

-- /etc/initramfs-tools/initramfs.conf
MODULES=most
BUSYBOX=y
KEYMAP=n
COMPRESS=gzip
DEVICE=
NFSROOT=auto

-- /etc/initramfs-tools/update-initramfs.conf
update_initramfs=yes
backup_initramfs=no

-- mkinitramfs hooks
/etc/initramfs-tools/hooks/:

/usr/share/initramfs-tools/hooks:
busybox
dmsetup
fus

Bug#711272: [Packaging] Bug#711272: closed by Stig Sandbeck Mathisen (Re: Bug#711272: Bug#711272: munin should depend libcgi-fast-perl)

2013-06-06 Thread Holger Levsen
control: reopen -1
control: retitle -1 munin should suggest libcgi-fast-perl

Hi,

On Freitag, 7. Juni 2013, raylu wrote:
> Sorry, I didn't realize munin 2 still allowed the old non-cgi graphing
> method.

it's even the default :)

> libapache2-mod-fcgid only works for apache2; those of us running some
> other httpd still need libcgi-fast-perl.

right, reopening.


cheers,
Holger


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


Bug#711037: zabbix-server-mysql: proc.num[spamd].last(0) always at 0

2013-06-06 Thread Craig Small
Hi,
 I'm the procps maintainer (Debian and upstream). Dmitry asked me to 
have a look at this bug as pgrep was discussed.  My first impression
is that there is some confusion between command line and process name.

Digging deeper, that is the correct impression.

So, we have a process, pgrep finds it, zabbix_agent doesn't. Obviously
they are doing things differently, but what?

pgrep, by default, uses the process name which what most tools show
by default. You can see the difference with
  ps -e -o pid,comm,cmd
which shows the pid, the process name and the command line.

What does zabbix use? Looking in src/libs/zbxsysinfo/linux/proc.c
we see this:
   if (FAIL == check_procname(f_cmd, f_stat, procname))

and what is f_cmd?
   zbx_snprintf(tmp, sizeof(tmp), "/proc/%s/cmdline", entries->d_name);
   if (NULL == (f_cmd = open_proc_file(tmp)))

cmdline is the command line, NOT the process name.

If you want to use pgrep to check the command line, then use the -f flag.

So why did spamd not show up? My strong assumption is that its command
line looks different to its process name.  There might be something else
happening here, but at the very least you can easily discount this.

 - Craig

-- 
Craig Small VK2XLZ   http://enc.com.au/  csmall at : enc.com.au
Debian GNU/Linux http://www.debian.org/  csmall at : debian.org
GPG fingerprint: 5D2F B320 B825 D939 04D2  0519 3938 F96B DF50 FEA5


signature.asc
Description: Digital signature


Bug#707085: transition: gmtk

2013-06-06 Thread Sebastian Ramacher
On 2013-06-06 22:09:35, Julien Cristau wrote:
> On Tue, May  7, 2013 at 13:08:07 +0200, Sebastian Ramacher wrote:
> 
> > Package: release.debian.org
> > Severity: normal
> > User: release.debian@packages.debian.org
> > Usertags: transition
> > 
> > Hi release team,
> > 
> > I'd like to request a slot for the transition of gmtk. libgmtk0 and 
> > libgmlib0
> > both bumped SONAME.
> > 
> > gmtk and its reverse dependencies gnome-mplayer and gecko-mediaplayer are 
> > staged
> > in experimental. No other packages are affected and thus this should only 
> > be a
> > matter of uploading the versions of gmtk, gnome-mplayer and 
> > gecko-mediaplayer
> > found in experimental to unstable.
> > 
> Go ahead.

Thanks. All three uploaded and accepted.

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: Digital signature


Bug#711457: python-qt4: insufficient build-depends

2013-06-06 Thread peter green

Package: python-qt4
Version: 4.10.1-1
Severity: minor

While working on a deriviative (specifically raspbian) I noticed that 
your package uses python3.2-config --configdir ). This is provided by 
python3.2-dev. However your build-depends do not ensure that a 
sufficiently recent version is installed and this caused a build failure 
for us.


Version 3.2.3-7 does not provide the --configdir option, Version 3.2.4-1 
does. I have not tested 3.2.3-8.



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



Bug#711314: Missing jars in /usr/share/maven-repo

2013-06-06 Thread gregor herrmann
On Thu, 06 Jun 2013 23:39:48 +0200, Emmanuel Bourg wrote:

> Le 06/06/2013 22:09, gregor herrmann a écrit :

Bon soir !
 
> > So the jars are back again in /usr/share/maven-repo (as symlinks).
> > Uploading in a minute (to DELAYED/1 to give other a chance to point
> > out errors.)
> It looks good. Thank you for the quick fix Gregor.

You're welcome, and thanks for checking!

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Ry Cooder: Crazy 'Bout An Automobile (Every Woman I Know)


signature.asc
Description: Digital signature


Bug#711456: apt: fails to do an update with "Internal Error, No file name for..." using amd64 and i386 dvd media

2013-06-06 Thread Andrey
Package: apt
Version: 0.9.8.1
Severity: important

Dear maintainers,

after recent apt update something is going wrong with multiarch updates. Doing
an update of some packages apt asks for amd64 disk, and then it asks again the
same amd64 disk instead of i386.

root@debian:~# apt-get install
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
 g++-4.6 : Depends: gcc-4.6-base (= 4.6.3-15) but 4.6.4-2 is installed
   Depends: gcc-4.6 (= 4.6.3-15) but 4.6.4-2 is installed
 libgl1-mesa-dev : Depends: libgl1-mesa-glx (= 8.0.5-6) but 8.0.5-4 is
installed
 libgl1-mesa-dri:i386 : Depends: libffi5:i386 (>= 3.0.4) but it is not
installed
 libgl1-mesa-dri-dbg : Depends: libgl1-mesa-dri (= 8.0.5-6) but 8.0.5-4 is
installed
 libglu1-mesa-dev : Depends: libglu1-mesa (= 8.0.5-6) but 8.0.5-4 is installed
 libgnutls-dev : Depends: libgnutls26 (= 2.12.23-5) but 2.12.20-6 is installed
 libgnutls-openssl27 : Depends: libgnutls26 (= 2.12.23-5) but 2.12.20-6 is
installed
 libgnutlsxx27 : Depends: libgnutls26 (= 2.12.23-5) but 2.12.20-6 is installed
 libosmesa6-dev : Depends: libosmesa6 (= 8.0.5-6) but 8.0.5-4 is installed
 libssl-dev : Depends: libssl1.0.0 (= 1.0.1e-3) but 1.0.1e-2 is installed
 libstdc++6-4.6-dev : Depends: gcc-4.6-base (= 4.6.3-15) but 4.6.4-2 is
installed
 libtasn1-3-dev : Depends: libtasn1-3 (= 2.14-3) but 2.13-2 is installed
E: Unmet dependencies. Try using -f.
root@debian:~# apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  g++-4.6 libgl1-mesa-dri:i386 libgl1-mesa-dri libgl1-mesa-glx:i386 libgl1
-mesa-glx libglapi-mesa:i386 libglapi-mesa libglu1-mesa:i386 libglu1-mesa
  libgnutls26:i386 libgnutls26 libosmesa6 libssl1.0.0:i386 libssl1.0.0
libstdc++6-4.6-dev libtasn1-3:i386 libtasn1-3
Suggested packages:
  g++-4.6-multilib gcc-4.6-doc libstdc++6-4.6-dbg libglide3:i386 libglide3
libstdc++6-4.6-doc
The following packages will be upgraded:
  g++-4.6 libgl1-mesa-dri:i386 libgl1-mesa-dri libgl1-mesa-glx:i386 libgl1
-mesa-glx libglapi-mesa:i386 libglapi-mesa libglu1-mesa:i386 libglu1-mesa
  libgnutls26:i386 libgnutls26 libosmesa6 libssl1.0.0:i386 libssl1.0.0
libstdc++6-4.6-dev libtasn1-3:i386 libtasn1-3
17 upgraded, 0 newly installed, 0 to remove and 1222 not upgraded.
36 not fully installed or removed.
Need to get 0 B/60.3 MB of archives.
After this operation, 936 kB disk space will be freed.
Do you want to continue [Y/n]?
Media change: please insert the disc labeled
 'Debian GNU/Linux testing _Jessie_ - Official Snapshot amd64 DVD Binary-1
20130603-05:29'
in the drive '/media/cdrom/' and press enter

Media change: please insert the disc labeled
 'Debian GNU/Linux testing _Jessie_ - Official Snapshot amd64 DVD Binary-1
20130603-05:29'
in the drive '/media/cdrom/' and press enter

E: Internal Error, No file name for libssl1.0.0:i386
E: Internal Error, No file name for libgnutls26:i386
E: Internal Error, No file name for libtasn1-3:i386
E: Internal Error, No file name for libgl1-mesa-dri:i386
E: Internal Error, No file name for libglu1-mesa:i386
E: Internal Error, No file name for libgl1-mesa-glx:i386
E: Internal Error, No file name for libglapi-mesa:i386
E: Internal Error, No file name for libosmesa6:amd64
E: Internal Error, ordering was unable to handle the media swap
root@debian:~#

I've noticed in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=704653 a bug
has been fixed, dealing with [ in sources. And the same [ is used also by
cdroms. It's a pity, cvs browsing (http://git.debian.org/apt/apt.git) on
http://packages.qa.debian.org/a/apt.html is not really working making it hard
to have a quick look into the patch. Is it relevant or is this some other
problem?

Thanks,
Andrey

P.S. Do you know who is responding for the cvs browsing feature?



-- Package-specific info:

-- apt-config dump --

APT "";
APT::Architecture "amd64";
APT::Build-Essential "";
APT::Build-Essential:: "build-essential";
APT::Install-Recommends "1";
APT::Install-Suggests "0";
APT::Authentication "";
APT::Authentication::TrustCDROM "true";
APT::NeverAutoRemove "";
APT::NeverAutoRemove:: "^firmware-linux.*";
APT::NeverAutoRemove:: "^linux-firmware$";
APT::NeverAutoRemove:: "^linux-image.*";
APT::NeverAutoRemove:: "^kfreebsd-image.*";
APT::NeverAutoRemove:: "^linux-restricted-modules.*";
APT::NeverAutoRemove:: "^linux-ubuntu-modules-.*";
APT::NeverAutoRemove:: "^gnumach$";
APT::NeverAutoRemove:: "^gnumach-image.*";
APT::Never-MarkAuto-Sections "";
APT::Never-MarkAuto-Sections:: "metapackages";
APT::Never-MarkAuto-Sections:: "restricted/metapackages";
APT::Never-MarkAuto-Sections:: "universe/metapackages";
APT::Never-MarkAuto-Sections:: "multiverse/metapackages";
APT::Never-MarkAuto-Sections:: "oldlibs";
APT::Never-MarkAuto-Sections:: "restricted/oldlibs

Bug#711455: mgltools-cadd: fails to upgrade from wheezy: Sorry: IndentationError: expected an indented block (RaccoonTools.py, line 34)

2013-06-06 Thread Andreas Beckmann
Package: mgltools-cadd
Version: 1.5.7~rc1~cvs.20130519-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'wheezy'.
It installed fine in 'wheezy', then the upgrade to 'sid' fails.

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

  Setting up mgltools-cadd (1.5.7~rc1~cvs.20130519-1) ...
  Sorry: IndentationError: expected an indented block (RaccoonTools.py, line 34)
  dpkg: error processing mgltools-cadd (--configure):
   subprocess installed post-installation script returned error exit status 101
  Setting up x11-common (1:7.7+3) ...
  invoke-rc.d: policy-rc.d denied execution of start.
  Processing triggers for libc-bin ...
  ldconfig deferred processing now taking place
  Errors were encountered while processing:
   mgltools-cadd


cheers,

Andreas


mgltools-cadd_1.5.7~rc1~cvs.20130519-1.log.gz
Description: GNU Zip compressed data


Bug#711454: libapache2-mod-php5: MPM prefork not found ... ==> ... Syntax error on line 9 of /etc/apache2/mods-enabled/php5.conf: Invalid command 'Order'

2013-06-06 Thread Andreas Beckmann
Package: libapache2-mod-php5
Version: 5.5.0~rc2+dfsg-2
Severity: important
Control: affects -1 + typo3-dummy

Hi,

while doing piuparts upgrade tests to sid I noticed the following:

 (libapache2-mod-php5):
  apache2_switch_mpm: MPM prefork not found
  Could not switch to prefork, not enabling php5

 (apache2):
  AH00526: Syntax error on line 9 of /etc/apache2/mods-enabled/php5.conf:
  Invalid command 'Order', perhaps misspelled or defined by a module not 
included in the server configuration

a bit more context, full log attached:

  Setting up php5-common (5.5.0~rc2+dfsg-2) ...
  Installing new version of config file /etc/cron.d/php5 ...
  
  Creating config file /etc/php5/mods-available/opcache.ini with new version
  Setting up libapache2-mod-php5 (5.5.0~rc2+dfsg-2) ...
  Replacing config file /etc/php5/apache2/php.ini with new version
  apache2_switch_mpm: MPM prefork not found
  Could not switch to prefork, not enabling php5
  Setting up apache2-data (2.4.4-5) ...
  Setting up apache2 (2.4.4-5) ...
  Installing new version of config file /etc/logrotate.d/apache2 ...
  Installing new version of config file /etc/init.d/apache2 ...
  Installing new version of config file /etc/apache2/envvars ...
  Installing new version of config file /etc/apache2/mods-available/dir.conf ...
  Installing new version of config file 
/etc/apache2/mods-available/mime_magic.conf ...
  Installing new version of config file 
/etc/apache2/mods-available/include.load ...
  Installing new version of config file 
/etc/apache2/mods-available/autoindex.conf ...
  Installing new version of config file /etc/apache2/mods-available/ldap.conf 
...
  Installing new version of config file 
/etc/apache2/mods-available/authz_dbm.load ...
  Installing new version of config file /etc/apache2/mods-available/cgid.conf 
...
  Installing new version of config file 
/etc/apache2/mods-available/userdir.conf ...
  Installing new version of config file /etc/apache2/mods-available/ssl.load ...
  Installing new version of config file /etc/apache2/mods-available/alias.conf 
...
  Installing new version of config file 
/etc/apache2/mods-available/setenvif.conf ...
  Installing new version of config file /etc/apache2/mods-available/dav_fs.conf 
...
  Installing new version of config file 
/etc/apache2/mods-available/proxy_balancer.load ...
  Installing new version of config file 
/etc/apache2/mods-available/authz_groupfile.load ...
  Installing new version of config file 
/etc/apache2/mods-available/reqtimeout.conf ...
  Installing new version of config file /etc/apache2/mods-available/ssl.conf ...
  Installing new version of config file 
/etc/apache2/mods-available/negotiation.conf ...
  Installing new version of config file 
/etc/apache2/mods-available/deflate.conf ...
  Installing new version of config file /etc/apache2/mods-available/info.conf 
...
  Installing new version of config file 
/etc/apache2/mods-available/proxy_ftp.conf ...
  Installing new version of config file 
/etc/apache2/mods-available/actions.conf ...
  Installing new version of config file /etc/apache2/mods-available/status.conf 
...
  Installing new version of config file 
/etc/apache2/mods-available/proxy_balancer.conf ...
  Installing new version of config file 
/etc/apache2/mods-available/authz_user.load ...
  Installing new version of config file /etc/apache2/mods-available/mime.conf 
...
  Installing new version of config file /etc/apache2/mods-available/asis.load 
...
  Installing new version of config file 
/etc/apache2/mods-available/authz_host.load ...
  Installing new version of config file /etc/apache2/mods-available/proxy.conf 
...
  Installing new version of config file 
/etc/apache2/mods-available/deflate.load ...
  Installing new version of config file /etc/apache2/apache2.conf ...
  Installing new version of config file /etc/apache2/ports.conf ...
  Installing new version of config file /etc/default/apache2 ...
  Installing new version of config file /etc/cron.daily/apache2 ...
  Removing obsolete conffile /etc/apache2/mods-available/authz_default.load ...
  Removing obsolete conffile /etc/apache2/mods-available/authn_default.load ...
  Removing obsolete conffile /etc/apache2/mods-available/mem_cache.load ...
  Removing obsolete conffile /etc/apache2/mods-available/mem_cache.conf ...
  Removing obsolete conffile /etc/apache2/mods-available/authn_alias.load ...
  Removing obsolete conffile /etc/apache2/mods-available/cern_meta.load ...
  Removing obsolete conffile /etc/apache2/mods-available/disk_cache.load ...
  Removing obsolete conffile /etc/apache2/mods-available/disk_cache.conf ...
  Removing obsolete conffile /etc/apache2/mods-available/ident.load ...
  Removing obsolete conffile /etc/apache2/mods-available/imagemap.load ...
  Removing obsolete directory /etc/apache2/conf.d
  Enabling module mpm_prefork.
  disable obsolete module authz_default
  Enabling module authz_core.
  AH00526: Syntax error on line 9 of /etc/apache2/mods-enabled/php5.conf:
  Invalid comman

Bug#711452: liboasis-ocaml: Needs to depend on ocamlbuild in the META file.

2013-06-06 Thread Sylvain Le Gall
Package: liboasis-ocaml
Version: 0.3.0-1
Severity: normal
Tags: patch

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

   * What led up to the situation?
$ oasis setup -setup-update dynamic
$ make
ocaml setup.ml -build
File "setup.ml", line 1, characters 0-1:
Error: Reference to undefined global `Ocamlbuild_plugin'
make: *** [build] Erreur 2

There is a missing dependency on ocamlbuild in the META file. The bug
will be fixed upstream as well.

The patch attached fix the bug.

Regards
Sylvain 

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


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

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

Versions of packages liboasis-ocaml depends on:
ii  libc6  2.17-5
ii  libfindlib-ocaml [libfindlib-ocaml-8p7u5]  1.3.1-1
ii  libodn-ocaml [libodn-ocaml-9gxf8]  0.0.8-1
ii  ocaml-base-nox [ocaml-base-nox-3.12.1] 3.12.1-4

liboasis-ocaml recommends no packages.

Versions of packages liboasis-ocaml suggests:
pn  liboasis-ocaml-doc  

-- no debconf information
diff --git a/src/oasis/META b/src/oasis/META
index 88e7165..903ea3a 100644
--- a/src/oasis/META
+++ b/src/oasis/META
@@ -20,7 +20,7 @@
 
 
 # OASIS_START
-# DO NOT EDIT (digest: d471c9d7d5a1ce73f9fe3fdfbd92627e)
+# DO NOT EDIT (digest: b0f33f22f3fba881e821ce61ae4d4b8b)
 version = "0.3.1"
 description = "_oasis file functions"
 requires = "unix odn"
@@ -52,7 +52,7 @@ package "cli" (
 package "builtin-plugins" (
  version = "0.3.1"
  description = "_oasis file functions"
- requires = "oasis oasis.base"
+ requires = "oasis oasis.base ocamlbuild"
  archive(byte) = "builtin-plugins.cma"
  archive(byte, plugin) = "builtin-plugins.cma"
  archive(native) = "builtin-plugins.cmxa"


Bug#711450: debian-kernel-handbook: Possible typo in example on Chapter 6

2013-06-06 Thread Luís Picciochi Oliveira
Package: debian-kernel-handbook
Version: 1.0.15
Severity: normal

Hi,

On Chapter 6 of the Kernel Handbook[1], there's an example for a possible
content of /etc/modules:
loop max_int=32
sbp2

I understand that "max_int" is supposed to be a parameter to the loop module,
as explained in this Chapter. However, the modinfo command output shown
afterwards doesn't display this as a possible parameter, only "max_loop" and
"max_part".

I believe the example content of /etc/modules should be updated to reflect the
possible parameters displayed afterwards.


Best regards,
Luís Picciochi

1 - http://kernel-handbook.alioth.debian.org/ch-modules.html



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

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


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



Bug#711451: oasis: Depends on liboasis-ocaml-dev to enable dynamic mode.

2013-06-06 Thread Sylvain Le Gall
Package: oasis
Version: 0.3.0-1
Severity: normal

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

   * What led up to the situation?

Setting up a project with:
$> apt-get install oasis
$> oasis setup -setup-update dynamic
$> make
ocaml setup.ml -build
File "setup.ml", line 7, characters 0-16:
Error: Unbound module OASISDynRun
make: *** [build] Erreur 2

Solution:
$> apt-get install liboasis-ocaml-dev

Turns out that setup.ml is a toplevel script and that in order to use
OASISDynRun, you need OASISDynRun.cmi.

You can solve the problem by depending on liboasis-ocaml-dev or by
moving the *.cmi of the -dev package to liboasis-ocaml.

Regards
Sylvain

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


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

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

Versions of packages oasis depends on:
ii  libfindlib-ocaml [libfindlib-ocaml-8p7u5]  1.3.1-1
ii  liboasis-ocaml [liboasis-ocaml-iw5j4]  0.3.0-1
ii  libodn-ocaml [libodn-ocaml-9gxf8]  0.0.8-1
ii  ocaml-base-nox [ocaml-base-nox-3.12.1] 3.12.1-4

oasis recommends no packages.

Versions of packages oasis suggests:
pn  liboasis-ocaml-doc  

-- 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#711272: closed by Stig Sandbeck Mathisen (Re: [Packaging] Bug#711272: Bug#711272: munin should depend libcgi-fast-perl)

2013-06-06 Thread raylu
Sorry, I didn't realize munin 2 still allowed the old non-cgi graphing
method.

libapache2-mod-fcgid only works for apache2; those of us running some
other httpd still need libcgi-fast-perl.

-raylu

On Thu, Jun 06, 2013 at 09:36:14PM +, Debian Bug Tracking System wrote:
> This is an automatic notification regarding your Bug report
> which was filed against the munin package:
> 
> #711272: munin should depend libcgi-fast-perl
> 
> It has been closed by Stig Sandbeck Mathisen .
> 
> 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 Stig Sandbeck Mathisen 
>  by
> replying to this email.
> 
> 
> -- 
> 711272: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711272
> Debian Bug Tracking System
> Contact ow...@bugs.debian.org with problems

> Date: Thu, 6 Jun 2013 23:24:44 +0200
> From: Stig Sandbeck Mathisen 
> To: 711272-d...@bugs.debian.org
> Subject: Re: [Packaging] Bug#711272: Bug#711272: munin should depend
>  libcgi-fast-perl
> User-Agent: Mutt/1.5.21 (2010-09-15)
> 
> On Thu, Jun 06, 2013 at 08:58:55PM +0200, Holger Levsen wrote:
> > munin works fine _without_ libcgi-fast-perl, which is only needed
> > for _some_ cgi modes of operation.
> 
> libapache2-mod-fcgid was added to Suggests: in 2.0.9-1, in commit
> fef19717c34e3161e2bb55448b6425f1add38de4
> 
> -- 
> Stig Sandbeck Mathisen

> Date: Wed, 05 Jun 2013 18:21:00 -0400
> From: raylu 
> To: Debian Bug Tracking System 
> Subject: munin should depend libcgi-fast-perl
> X-Mailer: reportbug 6.4.4
> 
> Package: munin
> Version: 2.0.14-1
> Severity: grave
> Justification: renders package unusable
> 
> Dear Maintainer,
> 
> After upgrading my jessie/testing system like so:
> 
> [UPGRADE] munin:amd64 2.0.6-4 -> 2.0.14-1
> [UPGRADE] munin-common:amd64 2.0.6-4 -> 2.0.14-1
> [UPGRADE] munin-node:amd64 2.0.6-4 -> 2.0.14-1
> [UPGRADE] munin-plugins-core:amd64 2.0.6-4 -> 2.0.14-1
> 
> munin broke:
> 
> $ /usr/lib/munin/cgi/munin-cgi-graph
> Can't locate CGI/Fast.pm in @INC (@INC contains: /etc/perl
> /usr/local/lib/perl/5.14.2 /usr/local/
> BEGIN failed--compilation aborted at /usr/lib/munin/cgi/munin-cgi-graph
> line 36.
> 
> installing the dep fixed it:
> 
> [INSTALL, DEPENDENCIES] libfcgi-perl:amd64
> [INSTALL] libcgi-fast-perl:amd64
> 
> though for some reason it's still not working with lighttpd (possibly
> user error).
> 
> -- System Information:
> Debian Release: jessie/sid
>   APT prefers testing
>   APT policy: (500, 'testing')
> Architecture: amd64 (x86_64)
> 
> Kernel: Linux 3.2.0-4-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 munin depends on:
> ii  adduser  3.113+nmu3
> ii  cron 3.0pl1-124
> ii  libdate-manip-perl   6.39-1
> pn  libdigest-md5-perl   
> ii  libfile-copy-recursive-perl  0.38-1
> ii  libhtml-template-perl2.91-1
> ii  libio-socket-inet6-perl  2.69-2
> ii  liblog-log4perl-perl 1.29-1
> ii  librrds-perl 1.4.7-2
> pn  libstorable-perl 
> ii  liburi-perl  1.60-1
> ii  munin-common 2.0.14-1
> ii  perl [libtime-hires-perl]5.14.2-21
> ii  perl-modules 5.14.2-21
> ii  rrdtool  1.4.7-2
> ii  ttf-dejavu   2.33+svn2514-3
> 
> Versions of packages munin recommends:
> pn  munin-doc   
> ii  munin-node  2.0.14-1
> 
> Versions of packages munin suggests:
> pn  libapache2-mod-fcgid  
> ii  libnet-ssleay-perl1.48-1+b1
> ii  lighttpd [httpd]  1.4.31-4
> ii  w3m [www-browser] 0.5.3-8
> 
> -- no debconf information



signature.asc
Description: Digital signature


Bug#711388: ITP: scandir -- Better directory iterator that returns all file info the OS provides

2013-06-06 Thread Ben Hoyt
Ben Hoyt (author of scandir) here: note that my scandir module isn't quite
ready for prime-time. It's usable, but still very much in early
development. It has a couple of known issues, and I also intend to complete
the fast C version. Not quite sure about a time-frame yet.


Bug#710090: golang-go: Please provide go cross-compiler

2013-06-06 Thread Michael Stapelberg
Hi,

I spent some time on this and the following things are still missing
(current patch attached):

• generate the golang-go-$os-$arch packages in debian/control
  automatically
• properly call dh_strip (see comment)
• figure out whether .a files for e.g. netbsd/386 which are built on
  linux/amd64 can also be used on e.g. freebsd/386, or if they are
  specific to the host/arch they were built on

-- 
Best regards,
Michael
diff --git i/debian/control w/debian/control
index 12785bc..38e0a40 100644
--- i/debian/control
+++ w/debian/control
@@ -12,7 +12,8 @@ Homepage: http://golang.org/
 Package: golang-go
 Architecture: i386 amd64 armel armhf
 Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends},
-	 golang-src (>= ${source:Version})
+	 golang-src (>= ${source:Version}),
+	 golang-go-linux-${go:Hostarch}
 Replaces: golang-weekly-go, golang-weekly-tools, golang-tools
 Conflicts: golang-weekly-go, golang-weekly-tools, golang-tools
 Provides: go-compiler, golang-weekly-go, golang-weekly-tools, golang-tools
@@ -31,6 +32,80 @@ Description: Go programming language compiler
  Go programming language. This is Google's implementation of the Go
  tool chain.
 
+Package: golang-go-linux-386
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for 386
+ This package contains the Go standard library, compiled for 386.
+
+Package: golang-go-linux-amd64
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for amd64
+ This package contains the Go standard library, compiled for amd64.
+
+Package: golang-go-linux-arm
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for arm
+ This package contains the Go standard library, compiled for arm.
+
+Package: golang-go-freebsd-386
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for 386
+ This package contains the Go standard library, compiled for 386.
+
+Package: golang-go-freebsd-amd64
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for amd64
+ This package contains the Go standard library, compiled for amd64.
+
+Package: golang-go-freebsd-arm
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for arm
+ This package contains the Go standard library, compiled for arm.
+
+
+Package: golang-go-darwin-386
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for 386
+ This package contains the Go standard library, compiled for 386.
+
+Package: golang-go-darwin-amd64
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for amd64
+ This package contains the Go standard library, compiled for amd64.
+
+Package: golang-go-windows-386
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for 386
+ This package contains the Go standard library, compiled for 386.
+
+Package: golang-go-windows-amd64
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for amd64
+ This package contains the Go standard library, compiled for amd64.
+
+Package: golang-go-netbsd-386
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for 386
+ This package contains the Go standard library, compiled for 386.
+
+Package: golang-go-netbsd-amd64
+Architecture: i386 amd64 armel armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}
+Description: Go standard library for amd64
+ This package contains the Go standard library, compiled for amd64.
+
+
 Package: golang-src
 Replaces: golang-weekly-src, golang-go (<< 2:1-3~)
 Conflicts: golang-weekly-src
diff --git i/debian/golang-go.install w/debian/golang-go.install
index a94edb5..00f89ec 100644
--- i/debian/golang-go.install
+++ w/debian/golang-go.install
@@ -1,4 +1,4 @@
 bin/go /usr/bin
 bin/godoc /usr/bin
 bin/gofmt /usr/bin
-pkg /usr/lib/go/
+pkg/obj /usr/lib/go/pkg/
diff --git i/debian/rules w/debian/rules
index 5f48972..a28d546 100755
--- i/debian/rules
+++ w/debian/rules
@@ -32,6 +32,14 @@ override_dh_compress:
 	dh_compress -Xusr/share/doc/$(PACKAGE)-doc/html -Xusr/share/doc/$(PACKAGE)-doc/godoc
 
 override_dh_install:
+	for os in $$(echo linux freebsd windows darwin netbsd); do \
+		archs="amd64 386"; \
+		[ "$$os" = "linux" ] || [ "$$os" = "freebsd" ] && archs="amd64 arm 386"; \
+		for arch in $$(echo $$archs); do \
+			echo "pkg/$${os}_$${arch} /usr/lib/go/p

Bug#525077: Please fix.

2013-06-06 Thread 2bon2b
Would you please fix this bug? This bug is several years old and still
not fixed. Additionally, there are several other bug-reports, which are
complaining about this bug.
What's the problem? You just need to remove the pdf-line from
/usr/share/applications/gimp.desktop

Greets,
bigbog


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



Bug#711449: ifupdown: ifdown alias shuts down the whole interface

2013-06-06 Thread Anthony Verevkin
Package: ifupdown
Version: 0.7.8
Severity: important

Dear Maintainer,

Whenever the interface has multiple aliases, ex.
inet 10.102.160.2/24 brd 10.102.160.255 scope global eth0
inet 10.102.160.1/24 brd 10.102.160.255 scope global secondary eth0:1

 and you want to take the alias down while keeping the primary IP running 
by issuing:

# ifdown -v eth0:1

 ifdown will try to run "ip link del eth0:1" which yields an error in case 
eth0 is a physical interface or takes the whole interface down if it is bonding 
or vlan tagged interface.

The previous version of ifupdown 0.6.10, found in squeeze, would run "ifconfig 
eth0:1 down" instead. That works fine with aliases in all the situations above.

The difference is found in the sources in file "ifupdown.nw" lines 5969-5976. 
Should you go back to using ifconfig, or maybe fix the issue some other way?

Thank you,
Anthony


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

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

Versions of packages ifupdown depends on:
ii  dpkg 1.16.10
ii  initscripts  2.88dsf-41
ii  iproute  20120521-3+b3
ii  libc62.13-38
ii  lsb-base 4.1+Debian8

ifupdown recommends no packages.

Versions of packages ifupdown suggests:
ii  isc-dhcp-client [dhcp-client]  4.2.2.dfsg.1-5+deb70u3
ii  net-tools  1.60-24.2
pn  ppp
pn  rdnssd 

-- 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#711448: libhtml-copy-perl: FTBFS with perl 5.18: test failure

2013-06-06 Thread Dominic Hargreaves
Source: libhtml-copy-perl
Version: 1.30-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

# Testing HTML::Copy 1.3, Perl 5.018000, /usr/bin/perl
t/00-load.t .. ok
Strings with code points over 0xFF may not be mapped into in-memory file handles
readline() on closed filehandle $in at /build/dom-libhtml-copy-perl_1.30-1-i386-
fEvCSD/libhtml-copy-perl-1.30/blib/lib/HTML/Copy.pm line 255.
Use of uninitialized value in subroutine entry at /build/dom-libhtml-copy-perl_1
.30-1-i386-fEvCSD/libhtml-copy-perl-1.30/blib/lib/HTML/Copy.pm line 258.
Use of uninitialized value in concatenation (.) or string at /build/dom-libhtml-
copy-perl_1.30-1-i386-fEvCSD/libhtml-copy-perl-1.30/blib/lib/HTML/Copy.pm line 2
76.
Can't guess encoding of  at /build/dom-libhtml-copy-perl_1.30-1-i386-fEvCSD/libh
tml-copy-perl-1.30/blib/lib/HTML/Copy.pm line 276.
# Looks like you planned 16 tests but ran 6.
# Looks like your test exited with 255 just after 6.
t/parse.t  
Dubious, test returned 255 (wstat 65280, 0xff00)
Failed 1/2 test programs. 0/7 subtests failed.
Failed 10/16 subtests 

Test Summary Report
---
t/parse.t  (Wstat: 65280 Tests: 6 Failed: 0)
  Non-zero exit status: 255
  Parse errors: Bad plan.  You planned 16 tests but ran 6.
Files=2, Tests=7,  1 wallclock secs ( 0.02 usr  0.02 sys +  0.20 cusr  0.05 
csys =  0.29 CPU)
Result: FAIL

-- 
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#711447: clicking on tabs doesn't raise windows

2013-06-06 Thread Ulrich Eckhardt
Package: fluxbox
Version: 1.3.5-1
Severity: wishlist

Hi!

I believe that since a recent update of fluxbox in testing, you can't
click on window tabs any more in order to raise the window. Similarly,
though not as grave, you can't drag a tab onto a group in order to add
the window to the group or to reorder the tabs.

I'm now wondering if this was by accident or intentional...

Greetings from Hamburg!

Uli



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

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

Versions of packages fluxbox depends on:
ii  libc6   2.17-3
ii  libfontconfig1  2.9.0-7.1
ii  libfreetype62.4.9-1.1
ii  libfribidi0 0.19.5-2
ii  libgcc1 1:4.8.0-7
ii  libice6 2:1.0.8-2
ii  libimlib2   1.4.5-1
ii  libsm6  2:1.2.1-2
ii  libstdc++6  4.8.0-7
ii  libx11-62:1.5.0-1+deb7u1
ii  libxext62:1.3.1-2+deb7u1
ii  libxft2 2.3.1-1
ii  libxinerama12:1.1.2-1+deb7u1
ii  libxpm4 1:3.5.10-1
ii  libxrandr2  2:1.3.2-2+deb7u1
ii  libxrender1 1:0.9.7-1+deb7u1
ii  menu2.1.46
ii  zlib1g  1:1.2.8.dfsg-1

Versions of packages fluxbox recommends:
ii  feh  2.3-2
ii  xfonts-terminus  4.35-1

Versions of packages fluxbox suggests:
pn  fbautostart  
pn  fbdesk   
pn  fbpager  

-- 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#711446: libgraph-writer-graphviz-perl: FTBFS with perl 5.18: test failure

2013-06-06 Thread Dominic Hargreaves
Source: libgraph-writer-graphviz-perl
Version: 0.11-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

#   Failed test at t/1.simple.t line 23.
# Looks like you failed 1 test of 1.
t/1.simple.t .. 
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1 subtests 

#   Failed test at t/2.ioall.t line 31.
# Looks like you failed 1 test of 2.
t/2.ioall.t ... 
Failed 2/3 test programs. 2/4 subtests failed.
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/2 subtests 

-- 
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#711445: select-editor should set EDITOR, not SELECTED_EDITOR

2013-06-06 Thread Josh Triplett
Package: sensible-utils
Version: 0.0.9
Severity: normal
File: /usr/bin/select-editor

select-editor currently introduces a new SELECTED_EDITOR environment
variable, and sets that variable in ~/.selected_editor, which only
sensible-editor reads.  Why not set EDITOR instead, and have
/etc/bash.bashrc source ~/.selected_editor?

- Josh Triplett

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

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

-- 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#710343: nfs-common: If rpcbind is not enabled, init script cannot be ran at postint

2013-06-06 Thread Tanguy Pruvot
This bug is related to portmap service name migration to "rpcbind"
It currently affect Debian 7
You can fix it by adding this insserv config file :

vi insserv/overrides/rpcbind.conf

$portmaprpcbind


Cheers
--
Tanguy Pruvot email : tanguy.pru...@gmail.com


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



Bug#711314: Missing jars in /usr/share/maven-repo

2013-06-06 Thread Emmanuel Bourg
Le 06/06/2013 22:09, gregor herrmann a écrit :

> So the jars are back again in /usr/share/maven-repo (as symlinks).
>  
> Uploading in a minute (to DELAYED/1 to give other a chance to point
> out errors.)

It looks good. Thank you for the quick fix Gregor.


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



Bug#711444: libgraph-readwrite-perl: FTBFS with perl 5.18: test failure

2013-06-06 Thread Dominic Hargreaves
Source: libgraph-readwrite-perl
Version: 2.03-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

t/simple.t .. 
Failed 1/3 test programs. 1/10 subtests failed.
Failed 1/5 subtests 

Test Summary Report
---
t/simple.t (Wstat: 0 Tests: 5 Failed: 1)
  Failed test:  5
Files=3, Tests=10,  0 wallclock secs ( 0.02 usr  0.02 sys +  0.50 cusr  0.06 csy
s =  0.60 CPU)
Result: FAIL


-- 
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#711443: libgit-pure-perl: FTBFS with perl 5.18: test failure

2013-06-06 Thread Dominic Hargreaves
Source: libgit-pure-perl
Version: 0.48-2
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

syntax error at t/00_setup.t line 7, near "$name qw(test-project 
test-project-packs test-project-packs2 test-encoding)"
Global symbol "$name" requires explicit package name at t/00_setup.t line 8.
Global symbol "$name" requires explicit package name at t/00_setup.t line 9.
syntax error at t/00_setup.t line 11, near "}"
Execution of t/00_setup.t aborted due to compilation errors.
t/00_setup.t .. 
Dubious, test returned 255 (wstat 65280, 0xff00)
No subtests run 
defined(@array) is deprecated at /usr/share/perl5/PerlIO/via/dynamic.pm line 
143.
(Maybe you should just omit the defined()?)
test-encoding/.git is not a directory at 
/build/dom-libgit-pure-perl_0.48-2-i386-7aMzlV/libgit-pure-perl-0.48/blib/lib/Git/PurePerl.pm
 line 105.
Git::PurePerl::BUILD('Git::PurePerl=HASH(0x8640054)', 
'HASH(0x863fe74)') called at constructor Git::PurePerl::new (defined at 
/build/dom-libgit-pure-perl_0.48-2-i386-7aMzlV/libgit-pure-perl-0.48/blib/lib/Git/PurePerl.pm
 line 92) line 63
Git::PurePerl::new('Git::PurePerl', 'directory', 'test-encoding') 
called at t/encoding.t line 8
t/encoding.t .. 
Dubious, test returned 2 (wstat 512, 0x200)
No subtests run 
defined(@array) is deprecated at /usr/share/perl5/PerlIO/via/dynamic.pm line 
143.
(Maybe you should just omit the defined()?)
t/init.t .. ok
t/protocol.t .. skipped: Needs you to manually run a git daemon
defined(@array) is deprecated at /usr/share/perl5/PerlIO/via/dynamic.pm line 
143.
(Maybe you should just omit the defined()?)
t/protocol_gpp.t .. ok
defined(@array) is deprecated at /usr/share/perl5/PerlIO/via/dynamic.pm line 
143.
(Maybe you should just omit the defined()?)
"my" variable $directory masks earlier declaration in same statement at 
t/simple.t line 12.
"my" variable $git masks earlier declaration in same statement at t/simple.t 
line 13.
syntax error at t/simple.t line 10, near "$directory qw(test-project 
test-project-packs test-project-packs2)"
syntax error at t/simple.t line 126, near "}"
Execution of t/simple.t aborted due to compilation errors.
t/simple.t  
Dubious, test returned 255 (wstat 65280, 0xff00)
Failed 3/6 test programs. 0/98 subtests failed.
No subtests run 

Test Summary Report
---
t/00_setup.t(Wstat: 65280 Tests: 0 Failed: 0)
  Non-zero exit status: 255
  Parse errors: No plan found in TAP output
t/encoding.t(Wstat: 512 Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: No plan found in TAP output
t/simple.t  (Wstat: 65280 Tests: 0 Failed: 0)
  Non-zero exit status: 255
  Parse errors: No plan found in TAP output
Files=6, Tests=98,  5 wallclock secs ( 0.05 usr  0.02 sys +  4.32 cusr  0.23 
csys =  4.62 CPU)
Result: FAIL

-- 
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#711442: libeval-context-perl: FTBFS with perl 5.18: test failure

2013-06-06 Thread Dominic Hargreaves
Source: libeval-context-perl
Version: 0.09.11-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

#   Failed test 'persistent variable names'
#   at t/009_persistent_variables.t line 129.
# Structures begin differing at:
#  $got->[0] = '$array'
# $expected->[0] = '$object'
# 
# |- 0 = $array  [S1]
# |- 1 = $hash  [S2]
# |- 2 = $object  [S3]
# |- 3 = $variable  [S4]
# |- 4 = @array  [S5]
# |- 5 = $scalar  [S6]
# `- 6 = %hash  [S7]
# Looks like you failed 1 test of 49.
t/009_persistent_variables.t  
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/49 subtests 

-- 
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#711440: mirror listing update for debian.cites.illinois.edu

2013-06-06 Thread Chris Kuehn and Daniel Lewart
Package: mirrors
Severity: minor

Submission-Type: update
Site: debian.cites.illinois.edu
Type: leaf
Archive-architecture: amd64 i386 
Archive-ftp: /debian/
Archive-http: /debian/
CDImage-ftp: /debian-cd/
CDImage-http: /debian-cd/
IPv6: no
Archive-upstream: ftp1.us.debian.org
CDImage-upstream: mirrors.kernel.org
Updates: four
Maintainer: Chris Kuehn and Daniel Lewart 
Country: US United States
Location: Urbana, IL
Sponsor: University of Illinois http://illinois.edu/
Comment: Changes only to:
   * Archive-ftp:  /debian/
   * Archive-http: /debian/
   * CDImage-ftp:  /debian-cd/
   * CDImage-http: /debian-cd/
 
 Thank you!


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



Bug#711441: liberror-perl: FTBFS with perl 5.18: test failure

2013-06-06 Thread Dominic Hargreaves
Source: liberror-perl
Version: 0.17-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie fixed-upstream
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=74770

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

#   Failed test 'warn \n-terminated STDERR'
#   at t/08warndie.t line 77.
#   'A warning at t/08warndie.t line 73.:
#   main::__ANON__() called at t/08warndie.t line 37
#   main::run_kid('CODE(0x849017c)') called at t/08warndie.t line 74
# '
# doesn't match '(?^:^A warning at (?^:t\/08warndie\.t) line 73:
# \tmain::__ANON__\(\) called at (?^:t\/08warndie\.t) line 37
# \tmain::run_kid\('CODE\(0x[0-9a-f]+\)'\) called at (?^:t\/08warndie\.t) line 7
4
# $)'

#   Failed test 'warn unterminated STDERR'
#   at t/08warndie.t line 89.
#   'A warning at t/08warndie.t line 85.:
#   main::__ANON__() called at t/08warndie.t line 37
#   main::run_kid('CODE(0x84903d4)') called at t/08warndie.t line 86
# '
# doesn't match '(?^:^A warning at (?^:t\/08warndie\.t) line 85:
# \tmain::__ANON__\(\) called at (?^:t\/08warndie\.t) line 37
# \tmain::run_kid\('CODE\(0x[0-9a-f]+\)'\) called at (?^:t\/08warndie\.t) line 8
6
# $)'

#   Failed test 'Custom warn STDERR'
#   at t/08warndie.t line 192.
#   'My custom warning here: A warning at t/08warndie.t line 
188.:
#   main::__ANON__() called at t/08warndie.t line 37
#   main::run_kid('CODE(0x84910f4)') called at t/08warndie.t line 189
# '
# doesn't match '(?^:^My custom warning here: A warning at 
(?^:t\/08warndie\.t) line 188:
# \tmain::__ANON__\(\) called at (?^:t\/08warndie\.t) line 37
# \tmain::run_kid\('CODE\(0x[0-9a-f]+\)'\) called at (?^:t\/08warndie\.t) line 
189
# $)'
# Looks like you failed 3 tests of 21.
t/08warndie.t  
Dubious, test returned 3 (wstat 768, 0x300)
Failed 3/21 subtests 

This was fixed in upstream version 0.17017.

-- 
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#710184: pu: package mozc/1.5.1090.102-4+deb7u1

2013-06-06 Thread Adam D. Barratt
Control: tags -1 + confirmed

On Wed, 2013-05-29 at 07:39 +0900, Nobuhiro Iwamatsu wrote:
+mozc (1.5.1090.102-4+deb7u1) stable; urgency=low
+
+  * Fix connect error to mozc-server if it is root using uim-mozc.
+Add patches/fix-root-issue-at-uim.patch. (Closes: #708608)
+  * Update debian/rules.
+Fix install path of mo file for fcitx-mozc. (Closes: #705573 )
+  * Update debian/control.
+Add mozc-data to tegaki-zinnia-japanese to Depends of fcitx-mozc.
+Add mozc-utils-gui to Recommends of fcitx-mozc. (Closes: #705572)
+  * Remove debian/fcitx-mozc.install. This became unnecessary by other fixes.

Please go ahead.

Regards,

Adam


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



Bug#711167: libapache2-mod-perl2: FTBFS on ia64: test suite failed to start server

2013-06-06 Thread gregor herrmann
On Thu, 06 Jun 2013 22:54:03 +0200, Hector Oron wrote:

> Hello,

¡Hola!
 
> On Wed, Jun 05, 2013 at 10:52:37AM +0300, Niko Tyni wrote:
> > Package: libapache2-mod-perl2
> > Version: 2.0.8+httpd24-r1449661-3
> > Severity: serious
> 
> The package versioned as 2.0.8+httpd24-r1449661-3 also fails on armel 
> architecture, but hangs the build daemon. It took out of bussiness ancina 
> armel buildd, then it was given back and it hanged alwyn.
> As the package has not failed, the logs is not visible online, I have taken 
> out the build log from ancina and place it at:
>   
> 

Thanks, that's interesting and helpful!
(The missing log was indeed the missing piece :)
So far we've only seen the ia64 failure which was not reproducible.)

A short view shows that
- the log doesn't actually show anything :/
  (i.e. no problem)
- it ends after the first test suite, when the test server is brought
  down
- which might indeed be similar to the segfaults we've seen on other
  architectures at this stage (cf. #711213)
- so this might be the core issue here?


Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Funny van Dannen: Hauptstadt der Gefühle


signature.asc
Description: Digital signature


Bug#711363: rt-tests: hackbench does not work in stable on armhf

2013-06-06 Thread Uwe Kleine-König
On Thu, Jun 06, 2013 at 09:49:21PM +0100, Adam D. Barratt wrote:
> On Thu, 2013-06-06 at 16:45 +0200, Sebastian Andrzej Siewior wrote:
> > It is not in 0.84. Can you fix this in stable, please?
> > armel seems not to be affected.
> 
> fwiw, as unstable also has 0.83, it would need to be fixed there first.
Yeah, I have a 0.84-1 package in the queue and I'm already nagging my
sponsor.

Best regards
Uwe

-- 
Pengutronix e.K.   | Uwe Kleine-König|
Industrial Linux Solutions | http://www.pengutronix.de/  |


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



Bug#711439: libemail-mime-createhtml-perl: FTBFS with perl 5.18: test failure

2013-06-06 Thread Dominic Hargreaves
Source: libemail-mime-createhtml-perl
Version: 1.030-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

t/Email-MIME-CreateHTML.t ... 
Failed 1/49 subtests 

-- 
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#711438: libdebug-client-perl: FTBFS with perl 5.18: given is experimental

2013-06-06 Thread Dominic Hargreaves
Source: libdebug-client-perl
Version: 0.25-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie fixed-upstream

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

given is experimental at /build/dom-libdebug-client-perl_0.25-1-i386-JIY1Sm/libd
ebug-client-perl-0.25/blib/lib/Debug/Client.pm line 228.
Compilation failed in require at t/02-exports.t line 8.
BEGIN failed--compilation aborted at t/02-exports.t line 8.
# Looks like your test exited with 255 before it could output anything.
t/02-exports.t  
Dubious, test returned 255 (wstat 65280, 0xff00)
Failed 29/29 subtests 

and so on.

Looks like being fixed in 0.26.

-- 
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#711437: pu: package flash-kernel/3.3+deb7u1

2013-06-06 Thread Cyril Brulebois
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: pu wheezy

Hi,

after the temptation of adding a dependency to fix installation failures
on some devices, NACKed by Martin[1], #693839 was diagnosed and fixed by
the same Martin[2]. :)

 1. https://lists.debian.org/20130102193706.ga2...@jirafa.cyrius.com
 2. https://lists.debian.org/20130604192608.ga32...@jirafa.cyrius.com

I suggested to add a check to avoid issues in further updates, which
explains the test_db addition in the debdiff:
 README   |2 +-
 db/all.db|   24 
 debian/changelog |   15 +++
 debian/rules |1 +
 test_db  |   38 ++
 5 files changed, 67 insertions(+), 13 deletions(-)

The db and its minimal test suite get refined in 3.7 (just landed in
unstable)[3,4], but cosmetics don't belong in stable.

 3. 
http://anonscm.debian.org/gitweb/?p=d-i/flash-kernel.git;a=commitdiff;h=343eeb3f642c3f4b4cc4ec6591bfa3b6164b8dc7
 4. 
http://anonscm.debian.org/gitweb/?p=d-i/flash-kernel.git;a=commitdiff;h=67e61b9cfa883d3b6ec234c773de1e0b01e48476

Thanks for your time.

Mraw,
KiBi.
diff -Nru flash-kernel-3.3/db/all.db flash-kernel-3.3+deb7u1/db/all.db
--- flash-kernel-3.3/db/all.db	2012-07-08 03:02:03.0 +0200
+++ flash-kernel-3.3+deb7u1/db/all.db	2013-06-06 23:15:44.0 +0200
@@ -7,7 +7,7 @@
 U-Boot-Initrd-Address: 0x0
 Boot-Kernel-Path: /boot/uImage.buffalo
 Boot-Initrd-Path: /boot/initrd.buffalo
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: Buffalo Linkstation Mini
@@ -17,7 +17,7 @@
 U-Boot-Initrd-Address: 0x0
 Boot-Kernel-Path: /boot/uImage.buffalo
 Boot-Initrd-Path: /boot/initrd.buffalo
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: Buffalo Linkstation Pro/Live
@@ -27,7 +27,7 @@
 U-Boot-Initrd-Address: 0x0
 Boot-Kernel-Path: /boot/uImage.buffalo
 Boot-Initrd-Path: /boot/initrd.buffalo
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: Buffalo/Revogear Kurobox Pro
@@ -37,7 +37,7 @@
 U-Boot-Initrd-Address: 0x0
 Boot-Kernel-Path: /boot/uImage.buffalo
 Boot-Initrd-Path: /boot/initrd.buffalo
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: D-Link DNS-323
@@ -47,7 +47,7 @@
 Mtd-Initrd: File System
 U-Boot-Kernel-Address: 0x8000
 U-Boot-Initrd-Address: 0x0080
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: Freescale MX53 LOCO Board
@@ -56,7 +56,7 @@
 U-Boot-Initrd-Address: 0x0
 Boot-Kernel-Path: /boot/uImage
 Boot-Initrd-Path: /boot/uInitrd
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: no
 
 Machine: Genesi Efika Smartbook
@@ -68,7 +68,7 @@
 Boot-Kernel-Path: /boot/uImage
 Boot-Initrd-Path: /boot/uInitrd
 Boot-Script-Path: /boot/boot.scr
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: Genesi EfikaMX nettop
@@ -80,7 +80,7 @@
 Boot-Kernel-Path: /boot/uImage
 Boot-Initrd-Path: /boot/uInitrd
 Boot-Script-Path: /boot/boot.scr
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: GLAN Tank
@@ -94,7 +94,7 @@
 Kernel-Flavors: s3c24xx
 U-Boot-Multi-Address: 0x30008000
 Boot-Multi-Path: /boot/uImage.bin
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: HP Media Vault mv2120
@@ -105,7 +105,7 @@
 # mv2120-utils includes some initramfs-tools scripts that are nice to have but
 # which are not essential
 Optional-Packages: mv2120-utils
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: HP t5325 Thin Client
@@ -113,7 +113,7 @@
 Machine-Id: 2846
 U-Boot-Multi-Address: 0x0160
 Boot-Multi-Path: /boot/uImage
-Required-packages: u-boot-tools
+Required-Packages: u-boot-tools
 Bootloader-sets-root: yes
 
 Machine: LaCie 2Big Network v2
@@ -188,7 +188,7 @@
 Optional-Packages: ixp4xx-firmware
 # nslu2-utils will call update-initramfs -u to include the firmware and to run
 # the hook from flash-kernel
-Required-packages: apex-nslu2 nslu2-utils
+Required-Packages: apex-nslu2 nslu2-utils
 Bootloader-sets-root: no
 
 Machine: Marvell DB-78x00-BP Development Board
diff -Nru flash-kernel-3.3/debian/changelog flash-kernel-3.3+deb7u1/debian/changelog
--- flash-kernel-3.3/debian/changelog	2012-09-23 08:18:10.0 +0200
+++ flash-kernel-3.3+deb7u1/debian/changelog	2013-06-06 23:17:15.0 +0200
@@ -1,3 +1,18 @@
+flash-kernel (3.3+deb7u1) wheezy; urgency=low
+
+  [ Cyril Brulebois ]
+  * Backport the following from unstable to wheezy.
+
+  [ Martin Michlmayr ]
+  * The machine database is case-sensitive so ensure that all instances
+of "Required-Packages" are capitalized c

Bug#711436: libdbix-abstract-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libdbix-abstract-perl
Version: 1.010-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

#   Failed test 'SQL log matches expectations'
#   at t/2-dbix-abstract.t line 157.
# Structures begin differing at:
#  $got->[10] = 'DATE   1   INSERT INTO foo ( id, name, value) VALUE
S ('1', 'test1', 'value1')
# '
# $expected->[10] = 'DATE   1   INSERT INTO foo ( value, name, id) VALUE
S ('value1', 'test1', '1')
# '
# Looks like you failed 1 test of 27.
t/2-dbix-abstract.t .. 
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/27 subtests 

This looks like a hash randomization issue. Note that the build may
need to be run several times to show up this failure.

-- 
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#706598: tpu: win32-loader/0.7.4.7

2013-06-06 Thread Adam D. Barratt
Control: tags -1 + confimred

On Mon, 2013-06-03 at 21:41 +0200, Didier 'OdyX' Raboud wrote:
> I have now uploaded 0.7.4.8 to unstable and would like to get win32-loader 
> 0.7.4.7+deb7u1 with the following changelog (no other change to source) as 
> follows:
> 
> win32-loader (0.7.4.7+deb7u1) stable; urgency=low
> 
>   * Post-Wheezy release rebuild to update the embedded dependencies.

Please go ahead; thanks.

Regards,

Adam


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



Bug#711346: bugs.debian.org: should recognize multiline URL's with dash+newline

2013-06-06 Thread Don Armstrong
On Thu, 06 Jun 2013, Vincent Lefevre wrote:
> On http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=81;bug=711192
> there are multiline URL's broken at a dash (-). These URL's are not
> correctly recognized: only the first line is taken into account. As
> a URL is unlikely to end with a dash (at least when such a dash is
> followed by a new line and a valid URL character), one should regard
> them as being multiline.

While I can certainly make this change, I'm concerned about breaking
URLs that end in dashes and should not be continued onto the next line.

Perhaps only using this method if the URL on the line is more than 60
characters long and less than 110 characters long will be enough to
catch most cases.


-- 
Don Armstrong  http://www.donarmstrong.com

If you find it impossible to believe that the universe didn't have a
creator, why don't you find it impossible that your creator didn't
have one either?
 -- Anonymous Coward http://slashdot.org/comments.pl?sid=167556&cid=13970629


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



Bug#706142: pu: telepathy-idle/0.1.11-2+deb7u1

2013-06-06 Thread Adam D. Barratt
Control: tags -1 -confirmed +moreinfo

On Thu, 2013-05-23 at 11:10 +0100, Simon McVittie wrote:
> On 22/05/13 22:14, Adam D. Barratt wrote:
> > Ping?
> 
> Cc pkg-telepathy-maintainers: could someone who uses telepathy-idle
> regularly please pick this up?
> 
> Sorry, I've been holding off on this because the proposed patch is a
> regression: users who were relying on the ability to get a
> (man-in-the-middle-vulnerable) connection to a SSL IRC server whose
> certificate is self-signed or untrusted can no longer do so. I didn't
> think many people would fall into this category, but apparently quite a
> lot do...

No-one appears to have come back on this yet, so tagging appropriately
in the meantime.

Regards,

Adam


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



Bug#711435: libcss-dom-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libcss-dom-perl
Version: 0.14-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

Can't localize through a reference at (eval 222) line 5.
# Looks like you planned 450 tests but ran 343.
# Looks like your test exited with 2 just after 343.
t/CSSPrimitiveValue.t  
Dubious, test returned 2 (wstat 512, 0x200)
Failed 107/450 subtests 

Can't localize through a reference at (eval 22) line 5.
# Looks like you planned 37 tests but ran 14.
# Looks like your test exited with 2 just after 14.
t/CSSStyleDeclaration.t .. 
Dubious, test returned 2 (wstat 512, 0x200)
Failed 23/37 subtests 

Can't localize through a reference at (eval 166) line 5.
# Looks like you planned 219 tests but ran 145.
# Looks like your test exited with 2 just after 145.
t/CSSValue.t . 
Dubious, test returned 2 (wstat 512, 0x200)
Failed 74/219 subtests 

Can't localize through a reference at (eval 342) line 9.
# Looks like you planned 960 tests but ran 332.
# Looks like your test exited with 2 just after 332.
t/property-parser.t .. 
Dubious, test returned 2 (wstat 512, 0x200)
Failed 628/960 subtests 

Test Summary Report
---
t/CSSPrimitiveValue.t  (Wstat: 512 Tests: 343 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 450 tests but ran 343.
t/CSSStyleDeclaration.t(Wstat: 512 Tests: 14 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 37 tests but ran 14.
t/CSSValue.t   (Wstat: 512 Tests: 145 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 219 tests but ran 145.
t/property-parser.t(Wstat: 512 Tests: 332 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 960 tests but ran 332.
Files=31, Tests=2369,  4 wallclock secs ( 0.37 usr  0.14 sys +  3.09 cusr  0.24 
csys =  3.84 CPU)
Result: FAIL

I'm not sure whether any of the 0.15 changes are relevant, but that may
well be since

https://rt.cpan.org/Ticket/Display.html?id=84253

is a separate issue reported with bleadperl against 0.15.

-- 
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#711434: libconfig-std-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libconfig-std-perl
Version: 0.9-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

#   Failed test 'Content correct'
#   at t/00write.t line 40.
#  got: '
# def 3: def val 3
# def 2: def val 2
# 
# def 3 ml: def val 3
# : across several
# :lines
# 
# def 4: def val 4
# def1: def val 1
# 
# [Complex named!!!]
# 
# %^$%$#%: curses
# 123456789: zero
# 
# [Named]
# 
# hi there: What's your name???
# 
# list: a
# list: list
# list: of
# list: values
# list: all different
# 
# '
# expected: '
# def1: def val 1
# def 4: def val 4
# def 2: def val 2
# def 3: def val 3
# 
# def 3 ml: def val 3
# : across several
# :lines
# 
# [Complex named!!!]
# 
# 123456789: zero
# %^$%$#%: curses
# 
# [Named]
# 
# list: a
# list: list
# list: of
# list: values
# list: all different
# 
# hi there: What's your name???
# 
# '
# Looks like you failed 1 test of 5.
t/00write.t . 
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/5 subtests 

-- 
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#711433: libcgi-session-expiresessions-perl: FTBFS with perl 5.18: POD

2013-06-06 Thread Dominic Hargreaves
Source: libcgi-session-expiresessions-perl
Version: 1.12-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie fixed-upstream

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

#   Failed test 'POD test for blib/lib/CGI/Session/ExpireSessions.pm'
#   at /usr/share/perl5/Test/Pod.pm line 182.
# blib/lib/CGI/Session/ExpireSessions.pm (615): Expected text after =item, not 
a number
# Looks like you failed 1 test of 1.
t/00-pod.t .. 
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1 subtests 

Looks fixed in 1.13:

1.13  Mon May 27 15:57:00 2013

...

- Clean up the POD so it passes tests. Specifically, '=item 1' becomes '=item o 
1', and all other '=item'
tokens are replaced by '=item o' to match.


-- 
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#702258: xscreensaver: clutters up ~/tmp

2013-06-06 Thread Dietrich Clauss
Jamie Zawinski wrote:
> That's a completely reasonable place to put it.

No, it's annoying and it violates the FHS.  Dot-files have to be created
in ~/ , not in ~/somewhere/ .

From
http://refspecs.linuxfoundation.org/FHS_2.3/fhs-2.3.html#HOMEUSERHOMEDIRECTORIES

| Requirements
| 
| User specific configuration files for applications are stored in the
| user's home directory in a file that starts with the '.' character (a
| "dot file"). If an application needs to create more than one dot file
| then they should be placed in a subdirectory with a name starting with a
| '.' character, (a "dot directory"). In this case the configuration files
| should not start with the '.' character. [11]
|
| [11] It is recommended that apart from autosave and lock files programs
| should refrain from creating non dot files or directories in a home
| directory without user intervention.

One could argue that .cache is not a configuration file.  That's
correct, but it's a dot file and creating some (dot or non-dot) files
somewhere below /home/ without user intervention would be even worse.

Another adequate location of the cache file would be
~/.cache/xscreensaver/


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



Bug#711198: pu: package brltty/4.4-10wheezy1

2013-06-06 Thread Adam D. Barratt
Control: tags -1 + confirmed wheezy

On Wed, 2013-06-05 at 13:47 +0200, Samuel Thibault wrote:
> brltty (4.4-10wheezy1) wheezy; urgency=low

4.4-10+deb7u1 please.

>   * As discussed in bug Bug#705599, synchronize with finish-install on the
> method to enable accessibility in the installed system when accessibility
> was enabled in the installer.

#705599 still isn't fixed in sid? :(

>   * Also enable sound events at gdm banner.

Please go ahead.

Regards,

Adam


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



Bug#711432: libcgi-pm-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libcgi-pm-perl
Version: 3.61-2
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie fixed-upstream

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

t/function.t . 
Failed 1/32 subtests 

Fixed in 3.63.

-- 
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#711430: libcgi-cookie-splitter-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libcgi-cookie-splitter-perl
Version: 0.02-2
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=81612

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

Test Summary Report
---
t/basic.t (Wstat: 48128 Tests: 377 Failed: 188)
  Failed tests:  16, 18, 20, 22, 24, 26, 28, 30, 32, 34
36, 38, 40-43, 45-46, 61, 63, 65-69, 83
85, 87, 89, 91, 93, 95, 97, 99, 101, 103-106
108-109, 119-122, 124-125, 137-139, 141-144
146-149, 151-155, 158-159, 161-164, 166-192
207, 209, 211, 213, 215, 217, 219, 221
223, 225, 227, 229, 231-234, 236-237, 258
260, 262, 264, 266, 268, 270, 272, 274-277
279-280, 284, 286, 288-289, 291-292, 298
300, 302-305, 307-308, 322-324, 326-329
331-334, 336-344, 346, 353-377
  Non-zero exit status: 188
Files=1, Tests=377,  0 wallclock secs ( 0.08 usr  0.02 sys +  0.32 cusr  0.04 
csys =  0.46 CPU)
Result: FAIL

-- 
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#711429: mpd: init script should require avahi-deamon to be running at start of mpd

2013-06-06 Thread Christian Halaszovich
Package: mpd
Version: 0.16.7-2+b1
Severity: normal

Dear Maintainer,

mpd can interact with the avahi-daomon. To ensure that the avahi-daemon
is running, it should in my opinion  be listed in the script header under
Required-Start /- Stop

Regards,
Christian



-- System Information:
Debian Release: 7.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: armhf (armv7l)

Kernel: Linux 3.0.76 (PREEMPT)
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 mpd depends on:
ii  adduser   3.113+nmu3
ii  libao41.1.0-2
ii  libasound21.0.25-4
ii  libaudiofile1 0.3.4-2
ii  libavahi-client3  0.6.31-2
ii  libavahi-common3  0.6.31-2
ii  libavahi-glib10.6.31-2
ii  libavcodec53  6:0.8.6-1
ii  libavformat53 6:0.8.6-1
ii  libavutil51   6:0.8.6-1
ii  libc6 2.13-38
ii  libcurl3-gnutls   7.26.0-1+wheezy2
ii  libfaad2  2.7-8
ii  libflac8  1.2.1-6+b1
ii  libgcc1   1:4.7.2-5
ii  libglib2.0-0  2.33.12+really2.32.4-5
ii  libid3tag00.15.1b-10
ii  libjack-jackd2-0 [libjack-0.116]  1.9.8~dfsg.4+20120529git007cdc37-5
ii  libmad0   0.15.1b-7
ii  libmikmod23.1.12-5
ii  libmms0   0.6.2-3
ii  libmp3lame0   3.99.5+repack1-3
ii  libmpcdec62:0.1~r459-4
ii  libogg0   1.3.0-4
ii  libpulse0 2.0-6.1
ii  libsamplerate00.1.8-5
ii  libshout3 2.2.2-8
ii  libsqlite3-0  3.7.13-1+deb7u1
ii  libstdc++64.7.2-5
ii  libvorbis0a   1.3.2-1.3
ii  libvorbisenc2 1.3.2-1.3
ii  libvorbisfile31.3.2-1.3
ii  libwavpack1   4.60.1-3
ii  lsb-base  4.1+Debian8
ii  zlib1g1:1.2.7.dfsg-13

mpd recommends no packages.

Versions of packages mpd suggests:
ii  avahi-daemon  0.6.31-2
pn  icecast2  
ii  mpc [mpd-client]  0.22-1
pn  pulseaudio

-- Configuration Files:
/etc/mpd.conf changed:
music_directory "/var/lib/mpd/music"
playlist_directory  "/var/lib/mpd/playlists"
db_file "/var/lib/mpd/tag_cache"
log_file"/tmp/mpd.log"
pid_file"/var/run/mpd/pid"
state_file  "/var/lib/mpd/state"
sticker_file   "/var/lib/mpd/sticker.sql"
user"mpd"
input {
plugin "curl"
}
audio_output {
type"alsa"
name"USB audio"
device  "hw:2,0"# optional
auto_resample   "no"# opt
}
mixer_type  "disabled"
audio_buffer_size   "4096" # hope this helps
buffer_before_play  "50%"
filesystem_charset  "UTF-8"
id3v1_encoding  "UTF-8"


-- 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#711431: Unable to build with linux-3.9

2013-06-06 Thread Thomas Viehweger
Package: xtables-addons-source
Version: 2.2-1

xt_DNETMAP.c could not be compiled because of the changed definition of kuid_t 
in linux-3.9

Here is a snippet of the output from the build:

Xtables-addons 2.2 - Linux 3.9.4
if [ -n "/lib/modules/3.9.4/build" ]; then make -C /lib/modules/3.9.4/build 
M=/home/src/xtables-addons-2.2/extensions modules; fi;
make[5]: Entering directory `/home/src/linux-3.9.4'
  CC [M]  /home/src/xtables-addons-2.2/extensions/xt_DNETMAP.o
/home/src/xtables-addons-2.2/extensions/xt_DNETMAP.c: In function 
‘dnetmap_tg_check’:
/home/src/xtables-addons-2.2/extensions/xt_DNETMAP.c:331:16: error: 
incompatible types when assigning to type ‘kuid_t’ from type ‘unsigned int’
/home/src/xtables-addons-2.2/extensions/xt_DNETMAP.c:332:16: error: 
incompatible types when assigning to type ‘kgid_t’ from type ‘unsigned int’
/home/src/xtables-addons-2.2/extensions/xt_DNETMAP.c:344:16: error: 
incompatible types when assigning to type ‘kuid_t’ from type ‘unsigned int’
/home/src/xtables-addons-2.2/extensions/xt_DNETMAP.c:345:16: error: 
incompatible types when assigning to type ‘kgid_t’ from type ‘unsigned int’
make[6]: *** [/home/src/xtables-addons-2.2/extensions/xt_DNETMAP.o] Error 1


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



Bug#711428: libcgi-application-plugin-authentication-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libcgi-application-plugin-authentication-perl
Version: 0.20-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

t/03_destination.t .. ok

#   Failed test 'default - _detaint_selfurl'
#   at t/03_login_box.t line 121.
#  got: 'http://localhost?authen_username=user1;rm=two'
# expected: 'http://localhost?rm=two;authen_username=user1'

#   Failed test 'default - verify login box'
#   at /usr/share/perl5/Test/Regression.pm line 83.



This looks very much like hash randomisation issues.

-- 
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#709566: RM request

2013-06-06 Thread Paul Cupis

firestarter has been dead upstream for a long time and there appears to
be no-one taking over/continuing development. Please remove this package
from the archive.

Last upstream release - 1.0.3 (2005)

http://www.fs-security.com/

Thanks and regards,
Paul Cupis


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



Bug#711167: libapache2-mod-perl2: FTBFS on ia64: test suite failed to start server

2013-06-06 Thread Hector Oron
Hello,

On Wed, Jun 05, 2013 at 10:52:37AM +0300, Niko Tyni wrote:
> Package: libapache2-mod-perl2
> Version: 2.0.8+httpd24-r1449661-3
> Severity: serious

The package versioned as 2.0.8+httpd24-r1449661-3 also fails on armel 
architecture, but hangs the build daemon. It took out of bussiness ancina armel 
buildd, then it was given back and it hanged alwyn.
As the package has not failed, the logs is not visible online, I have taken out 
the build log from ancina and place it at:
  


Regards,
-- 
  Hector Oron


signature.asc
Description: Digital signature


Bug#711427: libcatalyst-action-rest-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libcatalyst-action-rest-perl
Version: 1.06-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie fixed-upstream
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=72685

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

#   Failed test 'The class isa Bio::PrimerDesigner::Result'
#   at t/result.t line 20.
# The class isn't a 'Bio::PrimerDesigner::Result' it's a ''
Can't locate object method "left" via package "Required design paramaters are 
missing" (perhaps you forgot to load "Required design paramaters are missing"?) 
at t/result.t line 22.
# Looks like you planned 3 tests but ran 2.
# Looks like you failed 1 test of 2 run.
# Looks like your test exited with 255 just after 2.
t/result.t ... 
Dubious, test returned 255 (wstat 65280, 0xff00)
Failed 2/3 subtests 

Note also the following warnings which appear throughout:

Use of uninitialized value in lc at /build/dom-libbio-primerdesigner-perl_0.07-1
-i386-DVHEtP/libbio-primerdesigner-perl-0.07/blib/lib/Bio/PrimerDesigner.pm line
 244.

Use of each() on hash after insertion without resetting hash iterator results 
in undefined behavior, Perl interpreter: 0x8c8e008 at 
/build/dom-libbio-primerdesigner-perl_0.07-1-i386-DVHEtP/libbio-primerdesigner-perl-0.07/blib/lib/Bio/PrimerDesigner/primer3.pm
 line 109.

-- 
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#688038: Promotion to unstable.

2013-06-06 Thread Raúl Sánchez Siles
  Hi:

  I can see this one is fixed in experimental, thanks for it. Once mercurial 
2.6.1 entered unstable, any reason not to promote hgsubversion into unstable as 
well?

  Thanks.
-- 
 Raúl Sánchez Siles
->Proud Debian user<-
Linux registered user #416098


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


Bug#711426: libbio-primerdesigner-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libbio-primerdesigner-perl
Version: 0.07-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

#   Failed test 'The class isa Bio::PrimerDesigner::Result'
#   at t/result.t line 20.
# The class isn't a 'Bio::PrimerDesigner::Result' it's a ''
Can't locate object method "left" via package "Required design paramaters are 
missing" (perhaps you forgot to load "Required design paramaters are missing"?) 
at t/result.t line 22.
# Looks like you planned 3 tests but ran 2.
# Looks like you failed 1 test of 2 run.
# Looks like your test exited with 255 just after 2.
t/result.t ... 
Dubious, test returned 255 (wstat 65280, 0xff00)
Failed 2/3 subtests 

Note also the following warnings which appear throughout:

Use of uninitialized value in lc at /build/dom-libbio-primerdesigner-perl_0.07-1
-i386-DVHEtP/libbio-primerdesigner-perl-0.07/blib/lib/Bio/PrimerDesigner.pm line
 244.

Use of each() on hash after insertion without resetting hash iterator results 
in undefined behavior, Perl interpreter: 0x8c8e008 at 
/build/dom-libbio-primerdesigner-perl_0.07-1-i386-DVHEtP/libbio-primerdesigner-perl-0.07/blib/lib/Bio/PrimerDesigner/primer3.pm
 line 109.

-- 
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#711425: libanyevent-connection-perl: FTBFS with perl 5.18: test failures

2013-06-06 Thread Dominic Hargreaves
Source: libanyevent-connection-perl
Version: 0.06-1
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.18-transition
Tags: sid jessie

This package FTBFS with perl 5.18 from experimental (in a clean sbuild
session):

#   Failed test 'use AnyEvent::Connection;'
#   at t/00-load.t line 9.
# Tried to use 'AnyEvent::Connection'.
# Error:  Useless use of '\'; doesn't escape metacharacter '{' at /build/dom
-libanyevent-connection-perl_0.06-1-i386-sJuxjW/libanyevent-connection-perl-0.06
/lib/AnyEvent/Connection/Util.pm line 32.
# Compilation failed in require at /build/dom-libanyevent-connection-perl_0.06-1
-i386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/Connection/Raw.pm lin
e 11.
# BEGIN failed--compilation aborted at /build/dom-libanyevent-connection-perl_0.
06-1-i386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/Connection/Raw.pm
 line 11.
# Compilation failed in require at /build/dom-libanyevent-connection-perl_0.06-1
-i386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/Connection.pm line 16
.
# BEGIN failed--compilation aborted at /build/dom-libanyevent-connection-perl_0.
06-1-i386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/Connection.pm lin
e 16.
# Compilation failed in require at (eval 5) line 2.
# BEGIN failed--compilation aborted at (eval 5) line 2.
# Testing AnyEvent::Connection , Perl 5.018000, /usr/bin/perl
# Looks like you failed 1 test of 2.
t/00-load.t ... 
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/2 subtests 
Useless use of '\'; doesn't escape metacharacter '{' at /build/dom-libanyevent-c
onnection-perl_0.06-1-i386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/
Connection/Util.pm line 32.
Compilation failed in require at /build/dom-libanyevent-connection-perl_0.06-1-i
386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/Connection/Raw.pm line 
11.
BEGIN failed--compilation aborted at 
/build/dom-libanyevent-connection-perl_0.06-1-i386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/Connection/Raw.pm
 line 11.
Compilation failed in require at 
/build/dom-libanyevent-connection-perl_0.06-1-i386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/Connection.pm
 line 16.
BEGIN failed--compilation aborted at 
/build/dom-libanyevent-connection-perl_0.06-1-i386-sJuxjW/libanyevent-connection-perl-0.06/lib/AnyEvent/Connection.pm
 line 16.
Compilation failed in require at (eval 2) line 2.
...propagated at /usr/share/perl/5.18/base.pm line 83.
BEGIN failed--compilation aborted at t/01-test.t line 8.
t/01-test.t ... 
Dubious, test returned 255 (wstat 65280, 0xff00)
No subtests run 
t/pod-coverage.t .. ok
t/pod.t ... skipped: Test::Pod 1.22 required for testing POD

Test Summary Report
---
t/00-load.t (Wstat: 256 Tests: 2 Failed: 1)
  Failed test:  1
  Non-zero exit status: 1
t/01-test.t (Wstat: 65280 Tests: 0 Failed: 0)
  Non-zero exit status: 255
  Parse errors: No plan found in TAP output
Files=4, Tests=3,  1 wallclock secs ( 0.06 usr  0.02 sys +  0.29 cusr  0.04 
csys =  0.41 CPU)
Result: FAIL

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



  1   2   3   4   >