Bug#787952: jessie-pu: package ocl-icd/2.2.3-1

2015-06-06 Thread Vincent Danjean
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

  Hi,

  As upstream of ocl-icd, we just discovered an annoying bug for all ocl-icd
version from 2.2.0 (included) to 2.2.5 (excluded, bug fixed).

  ocl-icd builds the libOpenCL.so.1 library that is a kind of stub library that
dispatch OpenCL calls to real OpenCL implementation (available as ICD).
  Due to this bug, the clSVMFree function (and only it) is not dispatched at
all. So, if any OpenCL program calls clSVMFree, it is as if there was no call
at all.

  I just uploaded a package to sid (2.2.5-1) that fixes this bug (#787941).
However, I would like a pre-approuval to prepare a package for jessie with only
this bug fix.

  The patch that will be applied to the jessie version will be a backport of
this one:
===
diff --git a/icd_generator.rb b/icd_generator.rb
index 61d7e4b..3c3f0a8 100644
--- a/icd_generator.rb
+++ b/icd_generator.rb
@@ -580,12 +580,13 @@ EOF
   error_handler.call
   ocl_icd_loader_gen_source +=   }\n
   if return_type != void then
-ocl_icd_loader_gen_source +=   RETURN(((struct _#{fps[0]} 
*)#{fps[1]})-dispatch-#{func_name}(
-ocl_icd_loader_gen_source += ps.join(, )
-ocl_icd_loader_gen_source += ));\n
+return_debug=RETURN
   else
-ocl_icd_loader_gen_source +=   return;
+return_debug=return
   end
+  ocl_icd_loader_gen_source +=   #{return_debug}(((struct _#{fps[0]} 
*)#{fps[1]})-dispatch-#{func_name}(
+  ocl_icd_loader_gen_source += ps.join(, )
+  ocl_icd_loader_gen_source += ));\n
   ocl_icd_loader_gen_source += }\n\n
 }
 ocl_icd_loader_gen_source += #pragma GCC visibility push(hidden)\n\n
===

  Note that most code of the libOpenCL.so library from ocl-icd is auto-generated
at build time. The previous fix is in the generator script. For a better 
understanding,
this fix leads to the following difference in the compiled code:
===
$ diff -u7 ../../../build-area/ocl-icd-2.2.4/ocl_icd_loader_gen.c 
ocl_icd_loader_gen.c 
--- ../../../build-area/ocl-icd-2.2.4/ocl_icd_loader_gen.c  2015-06-06 
17:43:52.686800886 +0200
+++ ocl_icd_loader_gen.c2015-06-06 17:55:53.510141219 +0200
@@ -1407,15 +1407,16 @@
 CL_API_ENTRY void CL_API_CALL
 clSVMFree(cl_context context ,
   void * svm_pointer ){
   debug_trace();
   if( (struct _cl_context *)context == NULL) {
 return;
   }
-  return;}
+  return(((struct _cl_context *)context)-dispatch-clSVMFree(context, 
svm_pointer));
+}
 
 CL_API_ENTRY cl_int CL_API_CALL
 clEnqueueSVMFree(cl_command_queue   command_queue ,
  cl_uintnum_svm_pointers ,
  void * svm_pointers[] ,
  void (CL_CALLBACK * pfn_free_func)(cl_command_queue  queue ,
 cl_uint   
num_svm_pointers ,
===
You can see that, now, the clSVMFree call is correctly dispatched to the ICD 
instead
of being a noop.

Only the clSVMFree function is impacted because this is the only one having a 
void
return type (that is handled a bit differently in the generator script)


  So, if you agree, I will prepare a ocl-icd for jessie with (only) this bug 
fix.


  Regards,
Vincent


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



Bug#787953: ITP: insubstantial -- Swing libraries (flamingo/substance/trident)

2015-06-06 Thread Felix Natter

Package: wnpp
Severity: wishlist
Owner: Felix Natter fnat...@gmx.net

* Package name: insubstantial
  Version : 7.3
  Upstream Author : Kirill Grouchnikov and others
* URL : https://github.com/Insubstantial/insubstantial
* License : BSD-3-clause
  Programming Lang: Java
  Description: Some swing libraries e.g. for ribbon UIs

insubstantial builds the following 14 packages:

libflamingo-java
liblaf-widget-java
liblaf-plugin-java
substance
substance-flamingo
substance-swingx
libtrident-java
libflamingo-java-doc
liblaf-widget-java-doc
liblaf-plugin-java-doc
substance-doc
substance-flamingo-doc
substance-swingx-doc
libtrident-java-doc

Most of these packages exist as (outdated) separate source packages.  I
am repackaging the latest 7.3 as one source package (while using bits
from the previous maintainers) because the packages have been merged
into one upstream package.
-- 
Felix Natter


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



Bug#730086: courier-pop-ssl not able to upgrade: error

2015-06-06 Thread Thomas Mayer
I did an upgrade from wheezy/stable to jessie/stable. As mentioned, I 
had to play around a bit with some symlinks and to fix some 
configuration issues. But it's working now, including courier-pop-ssl (I 
get my mails via secured pop3 port 995).


Executing

service courier-pop-ssl start

and

service courier-pop-ssl stop

works as expected without any errors.

However, when I store configuration in the courier web admin, the web 
browser reports me


Installing new configuration...
Executing /usr/sbin/authdaemond restart...
Executing /usr/sbin/pop3d-ssl stop ; . /etc/courier/pop3d-ssl ; test 
$POP3DSSLSTART != YES || /usr/sbin/pop3d-ssl start...
Stopping pop3d-ssl (via systemctl): pop3d-ssl.serviceFailed to stop 
pop3d-ssl.service: Unit pop3d-ssl.service not loaded.

 failed!
Starting pop3d-ssl (via systemctl): pop3d-ssl.serviceFailed to start 
pop3d-ssl.service: Unit pop3d-ssl.service failed to load: No such file 
or directory.

 failed!

When run in the shell (as root):

# /usr/sbin/pop3d-ssl stop
[] Stopping pop3d-ssl (via systemctl): pop3d-ssl.serviceFailed to 
stop pop3d-ssl.service: Unit pop3d-ssl.service not loaded.

 failed!

# /usr/sbin/pop3d-ssl start
[] Starting pop3d-ssl (via systemctl): pop3d-ssl.serviceFailed to 
start pop3d-ssl.service: Unit pop3d-ssl.service failed to load: No such 
file or directory.

 failed!


I have

 dpkg-query -l 'courier*'|grep ii
ii  courier-authdaemon 0.66.1-1+b1  amd64Courier 
authentication daemon
ii  courier-authlib0.66.1-1+b1  amd64Courier 
authentication library
ii  courier-authlib-userdb 0.66.1-1+b1  amd64userdb support for 
the Courier authentication library
ii  courier-base   0.73.1-1.6   amd64Courier mail server 
- base system
ii  courier-doc0.73.1-1.6   all  Courier mail server 
- additional documentation
ii  courier-maildrop   0.73.1-1.6   amd64Courier mail server 
- mail delivery agent
ii  courier-mta0.73.1-1.6   amd64Courier mail server 
- ESMTP daemon
ii  courier-mta-ssl0.73.1-1.6   amd64Courier mail server 
- ESMTP over SSL
ii  courier-pop0.73.1-1.6   amd64Courier mail server 
- POP3 server
ii  courier-pop-ssl0.73.1-1.6   amd64Courier mail server 
- POP3 over SSL
ii  courier-ssl0.73.1-1.6   amd64Courier mail server 
- SSL/TLS Support
ii  courier-webadmin   0.73.1-1.6   amd64Courier mail server 
- web-based administration frontend



uname -a #vServer Kernel from ISP
Linux _ 3.2.41-042stab094.7 #1 SMP Wed Oct 22 12:43:21 MSK 2014 x86_64 
GNU/Linux



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



Bug#785297: bug 785297 is forwarded to https://github.com/tatsuhiro-t/aria2/issues/346, tagging 785297

2015-06-06 Thread Magnus Holmgren
torsdagen den 4 juni 2015 19.03.50 skrev  Andreas Metzler:
 Find attached a minimal patch for the debian package to include the
 upstream fix.

Do you want to do the NMU, with an appropriate delay, since you've already 
posted the diff?

-- 
Magnus Holmgren
Debian Developer


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



Bug#787909: cl-asdf: breaks sbcl's included asdf.fasl

2015-06-06 Thread Faré
This is a known issue, due to an incompatible update in SBCL. There is
a fix in ASDF 3.1.4.13, but it hasn't been released yet.

Workarounds:
1- remove the debian package cl-asdf
OR
2- install a more recent asdf in ~/common-lisp/asdf/ —
  sudo apt-get install git
  mkdir -p ~/common-lisp/
  cd ~/common-lisp/
  git clone https://gitlab.common-lisp.net/asdf/asdf.git

This bug will be fix when we release 3.1.5 (RSN).

—♯ƒ • François-René ÐVB Rideau •ReflectionCybernethics• http://fare.tunes.org
Each new generation born is in effect an invasion of civilization by little
barbarians, who must be civilized before it is too late. — Thomas Sowell


On Sat, Jun 6, 2015 at 4:19 AM, Norbert Preining prein...@logic.at wrote:
 Package: cl-asdf
 Version: 2:3.1.4-1
 Severity: normal

 Dear all,

 I just found a problem due to both sbcl and cl-asdf being installed
 on my system while building cafeobj (an interpreter built on-top
 a CL interpreter, we are using sbcl).

 The warning message lists something about *POLICY and
 there is a changelog entry in sbcl that there were
 some changes.

 The build here produces the following log:
 ...
 ; compiling file /usr/share/common-lisp/source/cl-asdf/build/asdf.lisp
 (written 23 OCT 2014 05:15:20 AM):

 ; file: /usr/share/common-lisp/source/cl-asdf/build/asdf.lisp
 ; in: DEFUN GET-OPTIMIZATION-SETTINGS
 ; (ASSOC UIOP/LISP-BUILD::X SB-C::*POLICY*)
 ;
 ; caught WARNING:
 ;   Derived type of (SYMBOL-VALUE 'SB-C::*POLICY*) is
 ; (VALUES SB-C:POLICY OPTIONAL),
 ;   conflicting with its asserted type
 ; LIST.
 ;   See also:
 ; The SBCL Manual, Node Handling of Types

 ; file: /usr/share/common-lisp/source/cl-asdf/build/asdf.lisp
 ; in: DEFUN GET-OPTIMIZATION-SETTINGS
 ; (ASSOC UIOP/LISP-BUILD::X SB-C::*POLICY*)
 ;
 ; note: deleting unreachable code

 ; (LIST UIOP/LISP-BUILD::X UIOP/LISP-BUILD::Y)
 ; ==
 ;   UIOP/LISP-BUILD::X
 ;
 ; note: deleting unreachable code

 ; (ASSOC UIOP/LISP-BUILD::X SB-C::*POLICY*)
 ;
 ; caught WARNING:
 ;   Derived type of (SYMBOL-VALUE 'SB-C::*POLICY*) is
 ; (VALUES SB-C:POLICY OPTIONAL),
 ;   conflicting with its asserted type
 ; LIST.
 ;   See also:
 ; The SBCL Manual, Node Handling of Types

 ;
 /home/norbert/.cache/common-lisp/sbcl-1.2.12.debian-linux-x64/usr/share/common-l
 isp/source/cl-asdf/build/asdf-TMP.fasl written
 ; compilation finished in 0:00:04.523

 debugger invoked on a UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread
 #THREAD main thread RUNNING {1003B0E733}:
   COMPILE-FILE-ERROR while compiling #CL-SOURCE-FILE asdf build asdf

 Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.

 


 I am not sure who should take some action here, but I thought I report it.

 Thanks

 Norbert


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

 Kernel: Linux 4.1.0-rc6 (SMP w/4 CPU cores; PREEMPT)
 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash
 Init: systemd (via /run/systemd/system)

 cl-asdf depends on no packages.

 Versions of packages cl-asdf recommends:
 ii  clisp [lisp-compiler]   1:2.49-10
 ii  cmucl [lisp-compiler]   20f-1
 pn  common-lisp-controller  none
 ii  sbcl [lisp-compiler]2:1.2.12-1

 Versions of packages cl-asdf suggests:
 pn  cl-launch  none

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


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



Bug#730086: Vacation

2015-06-06 Thread racke

Thomas Mayer writes:

I did an upgrade from wheezy/stable to jessie/stable. As mentioned, I  
had to play around a bit with some symlinks and to fix some  
configuration issues. But it's working now, including courier-pop-ssl (I  
get my mails via secured pop3 port 995).


Executing

service courier-pop-ssl start

and

service courier-pop-ssl stop

works as expected without any errors.

However, when I store configuration in the courier web admin, the web  
browser reports me


Installing new configuration...
Executing /usr/sbin/authdaemond restart...
Executing /usr/sbin/pop3d-ssl stop ; . /etc/courier/pop3d-ssl ; test  
$POP3DSSLSTART != YES || /usr/sbin/pop3d-ssl start...
Stopping pop3d-ssl (via systemctl): pop3d-ssl.serviceFailed to stop  
pop3d-ssl.service: Unit pop3d-ssl.service not loaded.

 failed!
Starting pop3d-ssl (via systemctl): pop3d-ssl.serviceFailed to start  
pop3d-ssl.service: Unit pop3d-ssl.service failed to load: No such file  
or directory.

 failed!

When run in the shell (as root):

# /usr/sbin/pop3d-ssl stop
[] Stopping pop3d-ssl (via systemctl): pop3d-ssl.serviceFailed to  
stop pop3d-ssl.service: Unit pop3d-ssl.service not loaded.

 failed!

# /usr/sbin/pop3d-ssl start
[] Starting pop3d-ssl (via systemctl): pop3d-ssl.serviceFailed to  
start pop3d-ssl.service: Unit pop3d-ssl.service failed to load: No such  
file or directory.

 failed!


I have

 dpkg-query -l 'courier*'|grep ii
ii  courier-authdaemon 0.66.1-1+b1  amd64Courier  
authentication daemon
ii  courier-authlib0.66.1-1+b1  amd64Courier  
authentication library
ii  courier-authlib-userdb 0.66.1-1+b1  amd64userdb support for  
the Courier authentication library
ii  courier-base   0.73.1-1.6   amd64Courier mail server  
- base system
ii  courier-doc0.73.1-1.6   all  Courier mail server  
- additional documentation
ii  courier-maildrop   0.73.1-1.6   amd64Courier mail server  
- mail delivery agent
ii  courier-mta0.73.1-1.6   amd64Courier mail server  
- ESMTP daemon
ii  courier-mta-ssl0.73.1-1.6   amd64Courier mail server  
- ESMTP over SSL
ii  courier-pop0.73.1-1.6   amd64Courier mail server  
- POP3 server
ii  courier-pop-ssl0.73.1-1.6   amd64Courier mail server  
- POP3 over SSL
ii  courier-ssl0.73.1-1.6   amd64Courier mail server  
- SSL/TLS Support
ii  courier-webadmin   0.73.1-1.6   amd64Courier mail server  
- web-based administration frontend



uname -a #vServer Kernel from ISP
Linux _ 3.2.41-042stab094.7 #1 SMP Wed Oct 22 12:43:21 MSK 2014 x86_64  
GNU/Linux




Hello,


We are on vacation till 7th June.


In urgent cases please call our cellphone or contact our business
partner http://www.informastudio.com/.


Regards
   Racke


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



Bug#787954: parallel: CVE-2015-4155 CVE-2015-4156

2015-06-06 Thread Salvatore Bonaccorso
Source: parallel
Version: 20120422-1
Severity: normal
Tags: security upstream fixed-upstream

Hi,

the following vulnerabilities were published for parallel.

CVE-2015-4155[0]:
| GNU Parallel before 20150422, when using (1) --pipe, (2) --tmux, (3)
| --cat, (4) --fifo, or (5) --compress, allows local users to write to
| arbitrary files via a symlink attack on a temporary file.

CVE-2015-4156[1]:
| GNU Parallel before 20150522 (Nepal), when using (1) --cat or (2)
| --fifo with --sshlogin, allows local users to write to arbitrary files
| via a symlink attack on a temporary file.

If you fix the vulnerabilities please also make sure to include the
CVE (Common Vulnerabilities  Exposures) ids in your changelog entry.

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2015-4155
[1] https://security-tracker.debian.org/tracker/CVE-2015-4156

Regards,
Salvatore


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



Bug#787955: openjdk-8-jre: crashes in GUI program when focussing widgets with tab

2015-06-06 Thread Sebastian Humenda
Package: openjdk-8-jre
Version: 8u45-b14-3
Severity: important

This crash occurred while executing mediathekview, although it seems to be a
jvm-related issue, hence reporting it here.

After opening the application and using tab roughly 3-4 times to focus 
different UI widgets the application crashed. This happens reliably.
The only change I've made to Java is to enable accessibility support in
/etc/java-8-openjdk/accessibility.properties, although I can confirm the same
for Debian 7 with openjdk-7-jre.

I've attached hs_err_pid.log and uploaded the core dump to:

http://wwwpub.zih.tu-dresden.de/~s7369555/core.xz

If you feel that bug report should be reported to upstream directly, I would ask
for assistance, since reporting a bug requires to enter a graphical code which I
cannot do.

Thanks

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

Kernel: Linux 4.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages openjdk-8-jre depends on:
ii  libasound21.0.28-1
ii  libatk-wrapper-java-jni   0.30.5-1
ii  libc6 2.19-18
ii  libgif4   4.1.6-11
ii  libgl1-mesa-glx [libgl1]  10.5.5-1
ii  libgtk2.0-0   2.24.25-3
ii  libjpeg62-turbo   1:1.4.0-7
ii  libpng12-01.2.50-2+b2
ii  libpulse0 6.0-2
ii  libx11-6  2:1.6.3-1
ii  libxext6  2:1.3.3-1
ii  libxinerama1  2:1.1.3-1+b1
ii  libxrandr22:1.4.2-1+b1
ii  openjdk-8-jre-headless8u45-b14-3
ii  zlib1g1:1.2.8.dfsg-2+b1

Versions of packages openjdk-8-jre recommends:
ii  fonts-dejavu-extra  2.35-1
ii  libgconf2-4 3.2.6-3
ii  libgnome2-0 2.32.1-5
ii  libgnomevfs2-0  1:2.24.4-6+b1

Versions of packages openjdk-8-jre suggests:
pn  icedtea-8-plugin  none

-- no debconf information
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x7f402f9a280e, pid=31471, tid=139912084903680
#
# JRE version: OpenJDK Runtime Environment (8.0_45-b14) (build 
1.8.0_45-internal-b14)
# Java VM: OpenJDK 64-Bit Server VM (25.45-b02 mixed mode linux-amd64 
compressed oops)
# Problematic frame:
# V  [libjvm.so+0x69480e]  jni_GetArrayLength+0x4e
#
# Core dump written. Default location: [X]
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
#

---  T H R E A D  ---

Current thread (0x7f3fb800f800):  JavaThread Thread-0 [_thread_in_vm, 
id=31503, stack(0x7f3fd19ed000,0x7f3fd21ee000)]

siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 
0x

Registers:
RAX=0x7f40302722a9, RBX=0x7f3fb800f800, RCX=0x, 
RDX=0x7f40302780d8
RSP=0x7f3fd21eca70, RBP=0x7f3fd21eca90, RSI=0x, 
RDI=0x7f3fb800f800
R8 =0x0004, R9 =0x7f40302e29fa, R10=0x7f4030639460, 
R11=0x
R12=0x7f3fb800f9e0, R13=0x, R14=0x0001, 
R15=0x7f3fb800ea50
RIP=0x7f402f9a280e, EFLAGS=0x00010202, CSGSFS=0x0033, 
ERR=0x0004
  TRAPNO=0x000e

Top of Stack: (sp=0x7f3fd21eca70)
0x7f3fd21eca70:   7f3fd21ecbb0 7f3fb8003270
0x7f3fd21eca80:   7f3fd21ecbb0 7f3fd21ecb60
0x7f3fd21eca90:   7f3fd21ecb20 7f400afb2422
0x7f3fd21ecaa0:   0007 7f3fb8517cc0
0x7f3fd21ecab0:   00100018 0007000c
0x7f3fd21ecac0:   7f3f0007 aa3be29f2e708500
0x7f3fd21ecad0:    7f3fb88a91e8
0x7f3fd21ecae0:    7f3fb80ef158
0x7f3fd21ecaf0:   7f3fb88a91e0 7f3fb800f9e0
0x7f3fd21ecb00:    7f3fb82ffe40
0x7f3fd21ecb10:   7f3fb8517cc0 7f3fb8003270
0x7f3fd21ecb20:   7f3fd21ecb50 7f3fd23fbbee
0x7f3fd21ecb30:   7f3fb8003270 7f3fb8003270
0x7f3fd21ecb40:   7f3fb885b390 7f3fd240300b
0x7f3fd21ecb50:   01007f3f 7f3fd21eccac
0x7f3fd21ecb60:   7f3fb885b390 7f3f00e0
0x7f3fd21ecb70:   7f3fb802006c 
0x7f3fd21ecb80:    7f3fb885b3e0
0x7f3fd21ecb90:    7f400980a5d9
0x7f3fd21ecba0:   001f 7f4009809b1c
0x7f3fd21ecbb0:   7f3fb8004a60 0445
0x7f3fd21ecbc0:   00010005 0444
0x7f3fd21ecbd0:   006f 7f3fb800ea33
0x7f3fd21ecbe0:   7f40283dc390 7f3fb8007300
0x7f3fd21ecbf0:   7f3fb800ea18 aa3be29f2e708500
0x7f3fd21ecc00:   7f3fb8003270 7f3fb8003270
0x7f3fd21ecc10:   7f3fd2402f70 7f3fb8007300

Bug#787956: lib32z1-dev: Compiling anything that includes zlib.h with -m32 fails

2015-06-06 Thread Sami Liedes
Package: lib32z1-dev
Version: 1:1.2.8.dfsg-2+b1
Severity: important

lib32z1-dev fails to include zconf.h, which results in compiling
(AFAICT) any zlib-using program to fail:


$ cat zlib-32.c 
#include zlib.h
$ gcc -m32 -c zlib-32.c 
In file included from zlib-32.c:1:0:
/usr/include/zlib.h:34:19: fatal error: zconf.h: No such file or directory
 #include zconf.h
   ^
compilation terminated.


Sami


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

Kernel: Linux 4.0.5 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lib32z1-dev depends on:
ii  lib32z1  1:1.2.8.dfsg-2+b1
ii  libc6-dev-i386 [lib32c-dev]  2.19-18
ii  zlib1g-dev   1:1.2.8.dfsg-2+b1

lib32z1-dev recommends no packages.

lib32z1-dev suggests no packages.

-- no debconf information


signature.asc
Description: Digital signature


Bug#787900: wheezy-pu: package live-tools/3.0.20-1+deb7u1

2015-06-06 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: wheezy
User: release.debian@packages.debian.org
Usertags: pu

live-tools diverts update-initramfs and installs its own implementation
(that calls the original update-initramfs). Due to a lack of Depends:
initramfs-tools this errors out if the original update-initramfs is not
found, breaking all packages that don't depend on update-initramfs, but
call update-initramfs only after checking for its existence.

So let's add the missing Depends as it was done for jessie+.


Andreas
diff -Nru live-tools-3.0.20/debian/changelog live-tools-3.0.20/debian/changelog
--- live-tools-3.0.20/debian/changelog	2013-04-25 12:53:59.0 +0200
+++ live-tools-3.0.20/debian/changelog	2015-06-06 08:38:31.0 +0200
@@ -1,3 +1,10 @@
+live-tools (3.0.20-1+deb7u1) wheezy; urgency=medium
+
+  * Non-maintainer upload.
+  * Depend on initramfs-tools.  (Closes: #779888)
+
+ -- Andreas Beckmann a...@debian.org  Sat, 06 Jun 2015 08:37:26 +0200
+
 live-tools (3.0.20-1) unstable; urgency=low
 
   * Detect being run in a live system being built on a live system by
diff -Nru live-tools-3.0.20/debian/control live-tools-3.0.20/debian/control
--- live-tools-3.0.20/debian/control	2013-04-25 12:47:14.0 +0200
+++ live-tools-3.0.20/debian/control	2015-06-06 08:39:10.0 +0200
@@ -11,7 +11,7 @@
 
 Package: live-tools
 Architecture: all
-Depends: ${misc:Depends}
+Depends: initramfs-tools, ${misc:Depends}
 Suggests: debian-installer-launcher, perl, rsync
 Description: Live System Support Scripts
  live-tools contains additional support scripts for live systems.


Bug#787899: realmd claims to install adcli, but doesn't, and this breaks sssd_be

2015-06-06 Thread Jason Lingohr
Package: realmd
Version: 0.15.1-1+b2
Severity: important

Dear Maintainer,

As stated, realmd claims to install adcli, but doesn't.

This has the serious side-effect of not installing libsasl2-modules-gssapi-mit
(a dep on adcli), and the logs fill with:

Jun 06 16:28:22 debian8 sssd_be[2978]: No worthy mechs found
Jun 06 16:28:22 debian8 sssd_be[2978]: No worthy mechs found
Jun 06 16:28:22 debian8 sssd_be[2978]: No worthy mechs found

And no AD/getent lookups work.

Once either is installed, sssd works.


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

Kernel: Linux 3.16.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/dash
Init: systemd (via /run/systemd/system)

Versions of packages realmd depends on:
ii  libc6   2.19-18
ii  libcomerr2  1.42.12-1.1
ii  libglib2.0-02.42.1-1
ii  libk5crypto31.12.1+dfsg-19
ii  libkrb5-3   1.12.1+dfsg-19
ii  libldap-2.4-2   2.4.40+dfsg-1
ii  libpackagekit-glib2-18  1.0.1-2
ii  libpolkit-gobject-1-0   0.105-8
ii  libsqlite3-03.8.7.1-1+deb8u1
ii  libsystemd0 215-17

realmd recommends no packages.

realmd 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#787892: Acknowledgement (realmd: Suffers from bug #735255 - missing /var/lib/samba/private)

2015-06-06 Thread Jason Lingohr
I should add, I needed a mkdir -p, as the parent samba/ dir wasn't there 
either.



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



Bug#787907: rygel-2.6-dev: fails to upgrade from 'jessie' - trying to overwrite /usr/share/gtk-doc/html/librygel-core/up.png

2015-06-06 Thread Andreas Beckmann
Package: rygel-2.6-dev
Version: 0.26.1-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'jessie'.
It installed fine in 'jessie', then the upgrade to 'stretch' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

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

  Selecting previously unselected package rygel-2.6-dev.
  Preparing to unpack .../rygel-2.6-dev_0.26.1-1_amd64.deb ...
  Unpacking rygel-2.6-dev (0.26.1-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/rygel-2.6-dev_0.26.1-1_amd64.deb (--unpack):
   trying to overwrite '/usr/share/gtk-doc/html/librygel-core/up.png', which is 
also in package rygel-2.4-dev 0.24.2-1+b1
  dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
  Processing triggers for libglib2.0-0:amd64 (2.42.1-1) ...
  Errors were encountered while processing:
   /var/cache/apt/archives/rygel-2.6-dev_0.26.1-1_amd64.deb


cheers,

Andreas


rygel-2.4-dev=0.24.2-1+b1_rygel-2.6-dev=0.26.1-1.log.gz
Description: application/gzip


Bug#663468: audacious-plugins: [regression] jack output plugin fails to start jack server

2015-06-06 Thread Francesco Poli
Control: found -1 audacious-plugins/3.5-1


On Sat, 18 May 2013 00:17:21 +0200 Francesco Poli wrote:

 On Sun, 11 Mar 2012 16:00:18 +0100 Francesco Poli (wintermute) wrote:
 
 [...]
  the jack output plugin is no longer able
  to start the jack server and spits out errors
 [...]
 
 Is there any progress on this issue?
 Has it been investigated?
 Has my bug report been forwarded upstream?
 
 I've just checked with audacious-plugins/3.3.4-2 and I am still able to
 reproduce the bug.
 
 Please let me know.
 Thanks for your time!

Hello again.
I am still able to reproduce the bug with audacious-plugins/3.5-1 ...

I haven't received any reply at all for more than 3 years.
Having to manually start the jack server is really annoying.

Could this bug be addressed somehow, please?
Thanks for any help you may provide.


-- 
 http://www.inventati.org/frx/
 There's not a second to spare! To the laboratory!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgpQA4NEo5fp2.pgp
Description: PGP signature


Bug#787898: Request access to git.debian.org

2015-06-06 Thread Niels Thykier
On 2015-06-06 08:56, willer450 wrote:
 Hi. I am a guest and
 I need access to git.debian.org.
 My alioth account name is
 willy-er-guest and
 I am going to work on project fonts-pt.
 Thanks.
 
 

Hi,

Thanks for your interest in Debian.

I cannot help you with your inquiry directly, I merely noticed that you
have sent this request to a WNPP bug (owned+reported by you).  As I
could not see that you have CC'ed anyone that might be able to give you
the necessary access rights, I am just following up to help you on:

 * If you need access to collab-maint, then you need (a DD to) contact
   n...@debian.org (see [1][2])

 * If you need access to another Alioth project, please contact the
   administrator(s) of said Alioth project.
   - based on your mail, you probably want the pkg-fonts team[3]

If you have already done this separately, then please ignore this mail.

Thanks,
~Niels

[1] https://wiki.debian.org/Alioth/PackagingProject

[2] https://lists.debian.org/debian-devel-announce/2015/02/msg1.html

[3] http://pkg-fonts.alioth.debian.org/


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



Bug#787898: ITP: fonts-pt -- PT (Public Type) fonts are free TrueType cyrillic fonts

2015-06-06 Thread Relli054w
Package: wnpp
Severity: wishlist
Owner: Relli054w willer...@gmail.com

* Package name: fonts-pt
  Version : 1.0
  Upstream Author : Aleksandra Korolkova (design) 
alexandra.korolk...@gmail.com, Olga Umpelova (design) 
olga.umpel...@gmail.com, Vladimir Yefimov (supervision), Isabella Chaeva 
(design)
* URL : http://www.paratype.com/public/
* License : OFL-1.1 or ParaType-1.3 
(http://www.paratype.com/public/pt_openlicense_eng.asp)
  Description : PT (Public Type) fonts are free TrueType cyrillic fonts

The Public Type or PT Fonts
are a family of free fonts,
released from 2009 onwards,
comprising PT Sans, PT Serif and PT Mono.
The latest version released in 2014.
They were commissioned
from the design agency ParaType by Rospechat,
a department of the Russian Ministry
of Communications, and Google
to form a font family
that supported all the different variations
of Cyrillic script used
by the minority languages of Russia,
as well as the Latin alphabet.
The main aim of the project
is to give possibility to the peoples of Russia
to read and write on their native languages.

The source package
will contains *.ttf files and
will produce the following
binary packages:
 - fonts-pt-sans;
 - fonts-pt-serif;
 - fonts-pt-mono and
 - metapackage fonts-pt
   that includes all of the above.

Similar bug:
https://bugs.launchpad.net/ubuntu/+bug/572061


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



Bug#787901: bugs.debian.org: querybts wnpp gets 500 Internal Server Error

2015-06-06 Thread Dan Greene
Package: bugs.debian.org
Severity: normal

Dear Maintainer,

Trying to retrieve bugs for the wnpp pseudo-package via querybts yields a HTTP 
500 error.

Here is the output of querybts wnpp:

Querying Debian BTS for reports on wnpp...
Traceback (most recent call last):
  File /usr/bin/querybts, line 240, in module
main()
  File /usr/bin/querybts, line 220, in main
mbox_reader_cmd=options.mbox_reader_cmd, latest_first=options.latest_first)
  File /usr/lib/python2.7/dist-packages/reportbug/ui/text_ui.py, line 517, in 
handle_bts_query
source=source, http_proxy=http_proxy, archived=archived)
  File /usr/lib/python2.7/dist-packages/reportbug/debbugs.py, line 1275, in 
get_reports
stats = debianbts.get_status(bugs)
  File /usr/lib/pymodules/python2.7/debianbts.py, line 179, in get_status
reply = server.get_status(*nr)
  File /usr/lib/python2.7/dist-packages/SOAPpy/Client.py, line 545, in 
__call__
return self.__r_call(*args, **kw)
  File /usr/lib/python2.7/dist-packages/SOAPpy/Client.py, line 567, in 
__r_call
self.__hd, self.__ma)
  File /usr/lib/python2.7/dist-packages/SOAPpy/Client.py, line 430, in __call
timeout = self.timeout)
  File /usr/lib/python2.7/dist-packages/SOAPpy/Client.py, line 318, in call
raise HTTPError(code, msg)
SOAPpy.Errors.HTTPError: HTTPError 500 Internal Server Error


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

Kernel: Linux 4.0.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


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



Bug#787788: [Pkg-alsa-devel] Bug#787788: Bug#787788: alsa-utils: snd_seq and snd_seq_midi modules no longer loaded

2015-06-06 Thread Elimar Riesebieter
* Forrest Cahoon forrest.cah...@gmail.com [2015-06-05 20:25 -0500]:

 I discovered that on plugging in a USB MIDI device, the module
 snd_seq_device is loaded, bringing with it the dependency snd_rawmidi. This
 would suffice for apps which use the raw MIDI interface, but not the
 sequencer MIDI interface. I have always used the latter, and until
 recently this has worked.
 
 I think that if the snd_seq_midi module could be loaded at the same time,
 using the same mechanism as the snd_seq_device module gets loaded, that
 would be the optimal solution.


What happens if you start an application foro your USB MIDI device
in addition?

Elimar
-- 
 You cannot propel yourself forward by
  patting yourself on the back.


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



Bug#787902: pelican: Please provide a python3 module

2015-06-06 Thread Johannes Schauer
Source: pelican
Version: 3.5.0-1
Severity: wishlist
Tags: patch

Control: block -1 by 787897

Hi,

I noticed that pelican still relies on Python 2 even though upstream
supports Python 3.

The attached patch rectifies the situation.

The patch can only be applied once feedgenerator offers a Python 3
module (bug #787897).

While changing the dh --buildsystem to pybuild, I tried getting the test
suite to work but ran into several problems. Thus I deactivated running
the test suite for now.

Thanks!

cheers, josch
diff -Nru pelican-3.5.0/debian/changelog pelican-3.5.0/debian/changelog
--- pelican-3.5.0/debian/changelog	2014-11-06 08:56:55.0 +0100
+++ pelican-3.5.0/debian/changelog	2015-06-06 08:12:57.0 +0200
@@ -1,3 +1,10 @@
+pelican (3.5.0-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * build a python3 module as well
+
+ -- Johannes Schauer jo...@debian.org  Sat, 06 Jun 2015 08:12:43 +0200
+
 pelican (3.5.0-1) unstable; urgency=medium
 
   * New upstream release.
diff -Nru pelican-3.5.0/debian/control pelican-3.5.0/debian/control
--- pelican-3.5.0/debian/control	2014-11-06 08:57:01.0 +0100
+++ pelican-3.5.0/debian/control	2015-06-06 08:38:25.0 +0200
@@ -5,8 +5,26 @@
 Uploaders: Ondřej Surý ond...@debian.org, Vincent Cheng vch...@debian.org
 Build-Depends:
  debhelper (= 7.4.3),
+ python-setuptools (= 0.6b3),
  python-all (= 2.6.6-3),
- python-setuptools (= 0.6b3)
+ python-dateutil,
+ python-unidecode,
+ python-blinker,
+ python-tz,
+ python-docutils,
+ python-pygments,
+ python-jinja2,
+ python-feedgenerator,
+ python3-all,
+ python3-setuptools,
+ python3-dateutil,
+ python3-unidecode,
+ python3-blinker,
+ python3-tz,
+ python3-docutils,
+ python3-pygments,
+ python3-jinja2,
+ python3-feedgenerator,
 Standards-Version: 3.9.6
 X-Python-Version: = 2.7
 Homepage: http://getpelican.com/
@@ -24,7 +42,26 @@
 Suggests:
  pandoc,
  python-bs4
-Description: blog aware, static website generator
+Description: blog aware, static website generator (Python 2 version)
+ Pelican is a static site generator, written in Python.  It allows you
+ to write your weblog entries directly with your editor of choice in
+ reStructuredText or Markdown, and generates completely static output
+ that is easy to host anywhere.  Pelican includes a simple CLI tool to
+ (re)generate the weblog and it is easy to interface with DVCSes and web
+ hooks.
+
+Package: python3-pelican
+Architecture: all
+Depends:
+ python3-argparse | python (= 2.7),
+ python3-markdown,
+ python3-pkg-resources,
+ ${misc:Depends},
+ ${python3:Depends}
+Suggests:
+ pandoc,
+ python-bs4
+Description: blog aware, static website generator (Python 3 version)
  Pelican is a static site generator, written in Python.  It allows you
  to write your weblog entries directly with your editor of choice in
  reStructuredText or Markdown, and generates completely static output
diff -Nru pelican-3.5.0/debian/pydist-overrides pelican-3.5.0/debian/pydist-overrides
--- pelican-3.5.0/debian/pydist-overrides	2014-08-04 10:37:42.0 +0200
+++ pelican-3.5.0/debian/pydist-overrides	1970-01-01 01:00:00.0 +0100
@@ -1,7 +0,0 @@
-feedgenerator python-feedgenerator
-jinja2 python-jinja2
-pygments python-pygments
-docutils python-docutils
-blinker python-blinker
-unidecode python-unidecode
-six python-six
diff -Nru pelican-3.5.0/debian/python3-pelican.install pelican-3.5.0/debian/python3-pelican.install
--- pelican-3.5.0/debian/python3-pelican.install	1970-01-01 01:00:00.0 +0100
+++ pelican-3.5.0/debian/python3-pelican.install	2015-06-06 08:12:39.0 +0200
@@ -0,0 +1 @@
+usr/lib/python3*
diff -Nru pelican-3.5.0/debian/python-pelican.install pelican-3.5.0/debian/python-pelican.install
--- pelican-3.5.0/debian/python-pelican.install	1970-01-01 01:00:00.0 +0100
+++ pelican-3.5.0/debian/python-pelican.install	2015-06-06 08:12:32.0 +0200
@@ -0,0 +1 @@
+usr/lib/python2*
diff -Nru pelican-3.5.0/debian/rules pelican-3.5.0/debian/rules
--- pelican-3.5.0/debian/rules	2014-08-04 10:37:42.0 +0200
+++ pelican-3.5.0/debian/rules	2015-06-06 08:38:08.0 +0200
@@ -1,12 +1,18 @@
 #!/usr/bin/make -f
 
 %:
-	dh $@ --with python2 --buildsystem=python_distutils
+	dh $@ --with python2,python3 --buildsystem=pybuild
 
 override_dh_clean:
 	dh_clean
 	rm -f pelican.egg-info/SOURCES.txt pelican.egg-info/requires.txt
 
+# the test suite does not run out of the box because it cannot find the
+# test_generators module in pelican/tests
+# but even after fixing that, there are test cases that do not finish
+# successfully
+override_dh_auto_test:
+
 override_dh_installchangelogs:
 	dh_installchangelogs docs/changelog.rst
 


Bug#787909: cl-asdf: breaks sbcl's included asdf.fasl

2015-06-06 Thread Norbert Preining
Package: cl-asdf
Version: 2:3.1.4-1
Severity: normal

Dear all,

I just found a problem due to both sbcl and cl-asdf being installed
on my system while building cafeobj (an interpreter built on-top
a CL interpreter, we are using sbcl).

The warning message lists something about *POLICY and
there is a changelog entry in sbcl that there were
some changes.

The build here produces the following log:
...
; compiling file /usr/share/common-lisp/source/cl-asdf/build/asdf.lisp
(written 23 OCT 2014 05:15:20 AM):

; file: /usr/share/common-lisp/source/cl-asdf/build/asdf.lisp
; in: DEFUN GET-OPTIMIZATION-SETTINGS
; (ASSOC UIOP/LISP-BUILD::X SB-C::*POLICY*)
;
; caught WARNING:
;   Derived type of (SYMBOL-VALUE 'SB-C::*POLICY*) is
; (VALUES SB-C:POLICY OPTIONAL),
;   conflicting with its asserted type
; LIST.
;   See also:
; The SBCL Manual, Node Handling of Types

; file: /usr/share/common-lisp/source/cl-asdf/build/asdf.lisp
; in: DEFUN GET-OPTIMIZATION-SETTINGS
; (ASSOC UIOP/LISP-BUILD::X SB-C::*POLICY*)
;
; note: deleting unreachable code

; (LIST UIOP/LISP-BUILD::X UIOP/LISP-BUILD::Y)
; ==
;   UIOP/LISP-BUILD::X
;
; note: deleting unreachable code

; (ASSOC UIOP/LISP-BUILD::X SB-C::*POLICY*)
;
; caught WARNING:
;   Derived type of (SYMBOL-VALUE 'SB-C::*POLICY*) is
; (VALUES SB-C:POLICY OPTIONAL),
;   conflicting with its asserted type
; LIST.
;   See also:
; The SBCL Manual, Node Handling of Types

;
/home/norbert/.cache/common-lisp/sbcl-1.2.12.debian-linux-x64/usr/share/common-l
isp/source/cl-asdf/build/asdf-TMP.fasl written
; compilation finished in 0:00:04.523

debugger invoked on a UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread
#THREAD main thread RUNNING {1003B0E733}:
  COMPILE-FILE-ERROR while compiling #CL-SOURCE-FILE asdf build asdf

Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.




I am not sure who should take some action here, but I thought I report it.

Thanks

Norbert


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

Kernel: Linux 4.1.0-rc6 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

cl-asdf depends on no packages.

Versions of packages cl-asdf recommends:
ii  clisp [lisp-compiler]   1:2.49-10
ii  cmucl [lisp-compiler]   20f-1
pn  common-lisp-controller  none
ii  sbcl [lisp-compiler]2:1.2.12-1

Versions of packages cl-asdf suggests:
pn  cl-launch  none


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



Bug#783657: dpkg: more install-info related Breaks needed for removed ancient packages

2015-06-06 Thread Andreas Beckmann
Control: tag -1 jessie

On 2015-04-28 21:57, Andreas Beckmann wrote:
   # removed after lenny
   ada-mode ( 3.6-3+rm)
   octave2.1-info ( 1:2.1.73-19+rm)

That should be the complete set :-)

Andreas


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



Bug#787898: Request access to git.debian.org

2015-06-06 Thread willer450

Hi. I am a guest and
I need access to git.debian.org.
My alioth account name is
willy-er-guest and
I am going to work on project fonts-pt.
Thanks.


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



Bug#787908: neutron-vpnaas-agent: fails to upgrade from 'jessie' - trying to overwrite /etc/neutron/rootwrap.d/vpnaas.filters

2015-06-06 Thread Andreas Beckmann
Package: neutron-vpnaas-agent
Version: 2015.1.0-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts
Control: affects -1 + neutron-common

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'jessie'.
It installed fine in 'jessie', then the upgrade to 'stretch' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

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

  Selecting previously unselected package neutron-vpnaas-agent.
  Preparing to unpack .../neutron-vpnaas-agent_2015.1.0-1_all.deb ...
  Unpacking neutron-vpnaas-agent (2015.1.0-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/neutron-vpnaas-agent_2015.1.0-1_all.deb (--unpack):
   trying to overwrite '/etc/neutron/rootwrap.d/vpnaas.filters', which is also 
in package neutron-common 2014.1.3-12
  Selecting previously unselected package curl.
  Preparing to unpack .../curl_7.38.0-4_amd64.deb ...
  Unpacking curl (7.38.0-4) ...
  Errors were encountered while processing:
   /var/cache/apt/archives/neutron-vpnaas-agent_2015.1.0-1_all.deb


cheers,

Andreas


neutron-common=2014.1.3-12_neutron-vpnaas-agent=2015.1.0-1.log.gz
Description: application/gzip


Bug#787562: jython FTBFS and jython is uninstallable because of unsatisfied (build-)dependency on libjnr-posix-java (= 3.0.10~)

2015-06-06 Thread Johannes Schauer
Hi Emmanuel,

Quoting Emmanuel Bourg (2015-06-04 10:45:57)
 Thank you for the detailed analysis Johannes. I removed the libmx4j-java
 dependency on jetty, is it any better now?

I now noticed that you uploaded src:jetty 6.1.26-5 without a build dependency
on libmx4j-java two days ago. So I guess the above was just a typo and actually
meant to say of jetty instead of on jetty?

In any case, for what it's worth, jython is not part of the B-D-transitive
essential set anymore :)

Thanks!

cheers, josch


signature.asc
Description: signature


Bug#787562: jython FTBFS and jython is uninstallable because of unsatisfied (build-)dependency on libjnr-posix-java (= 3.0.10~)

2015-06-06 Thread Emmanuel Bourg
Le 06/06/2015 10:57, Johannes Schauer a écrit :

 In any case, for what it's worth, jython is not part of the B-D-transitive
 essential set anymore :)

Great, thank you for confirming.

Emmanuel Bourg


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



Bug#787904: jessie-pu: package xemacs21/21.4.22-14~deb7u1

2015-06-06 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

There is an upgrade issue from ancient xemacs21 versions (from squeeze,
there was no xemacs21 in wheezy) where something deadlocks during the
upgrade.
This can be solved by 
* breaking a circular dependency (for more deterministic configure
  ordering) (#735268, #783704) and
* conflicting against some ancient transitional packages that are no
  longer built to ensure they get removed first (#775733)

Andreas
diff -Nru xemacs21-21.4.22/debian/PackagesMakefile.in xemacs21-21.4.22/debian/PackagesMakefile.in
--- xemacs21-21.4.22/debian/PackagesMakefile.in	2015-01-19 14:02:30.0 +0100
+++ xemacs21-21.4.22/debian/PackagesMakefile.in	2015-05-01 11:47:09.0 +0200
@@ -63,6 +63,7 @@
 	dh_testroot
 	dh_installdirs -p$@ -P$(b)/$@
 	dh_movefiles -p$@ -P$(b)/$@
+	mkdir -p $(b)/$@/@PREFIX@/lib/xemacs-21.4.22
 	cp $(b)/$@/@PREFIX@/share/xemacs-@VERSION@/etc/xemacs-icon*.* $(b)/$@/@PREFIX@/share/icons
 	cp debian/00debian.el $(b)/$@/etc/xemacs@MAJVERSION@/site-start.d/
 	cp debian/site-start.el $(b)/$@/@PREFIX@/share/xemacs@MAJVERSION@/site-packages/lisp
diff -Nru xemacs21-21.4.22/debian/changelog xemacs21-21.4.22/debian/changelog
--- xemacs21-21.4.22/debian/changelog	2015-01-19 13:23:54.0 +0100
+++ xemacs21-21.4.22/debian/changelog	2015-06-06 08:55:10.0 +0200
@@ -1,3 +1,36 @@
+xemacs21 (21.4.22-14~deb7u1) jessie; urgency=medium
+
+  * Non-maintainer upload.
+  * Rebuild for jessie.
+
+ -- Andreas Beckmann a...@debian.org  Sat, 06 Jun 2015 08:53:27 +0200
+
+xemacs21 (21.4.22-14) unstable; urgency=low
+
+  * Clean up after half baked removal of circular dependency, add an
+empty versioned lib directory now dpkg does the right thing with
+that (closes: #783704).
+
+ -- Mark Brown broo...@debian.org  Wed, 29 Apr 2015 12:41:56 +0100
+
+xemacs21 (21.4.22-13) unstable; urgency=low
+
+  * Clean up after half baked removal of circular dependency, add an
+empty versioned lib directory now dpkg does the right thing with
+that (closes: #783704).
+
+ -- Mark Brown broo...@debian.org  Wed, 29 Apr 2015 12:41:56 +0100
+
+xemacs21 (21.4.22-12) unstable; urgency=low
+
+  * Remove dependency from support to binary package since the binary
+package already has the equivalent dependency (closes: #735268).
+  * Conflict against old transitional packages to make absolutely sure
+that they are removed before we try to upgrade (closes: #775733).
+  * Above changes originally from Andreas Beckmann a...@debian.org.
+
+ -- Mark Brown broo...@debian.org  Sat, 25 Apr 2015 11:07:31 +0100
+
 xemacs21 (21.4.22-11) unstable; urgency=low
 
   * Remove GNOME transitional packages which have been present for more
diff -Nru xemacs21-21.4.22/debian/control xemacs21-21.4.22/debian/control
--- xemacs21-21.4.22/debian/control	2015-01-19 13:23:01.0 +0100
+++ xemacs21-21.4.22/debian/control	2015-04-25 12:14:35.0 +0200
@@ -22,6 +22,7 @@
 Package: xemacs21-mule
 Architecture: any
 Depends: xemacs21-support (= ${source:Version}), xemacs21-bin (= ${binary:Version}), ${shlibs:Depends}, xemacs21-mulesupport (= 2003.04.23-1), xemacs21-basesupport (= 2003.04.23-1), emacsen-common, ${misc:Depends}
+Conflicts: xemacs21-gnome-mule
 Provides: emacsen, info-browser, mail-reader, news-reader, www-browser, xemacs21
 Description: highly customizable text editor -- Mule binary
  XEmacs is a full fledged programming language with a mail reader,
@@ -48,6 +49,7 @@
 Package: xemacs21-nomule
 Architecture: any
 Depends: xemacs21-support (= ${source:Version}), xemacs21-bin (= ${binary:Version}), ${shlibs:Depends}, xemacs21-basesupport (= 2003.04.23-1), emacsen-common, ${misc:Depends}
+Conflicts: xemacs21-gnome-nomule
 Provides: emacsen, info-browser, mail-reader, news-reader, www-browser, xemacs21
 Description: highly customizable text editor -- Non-mule binary
  XEmacs is a full fledged programming language with a mail reader,
@@ -70,6 +72,7 @@
 Package: xemacs21-mule-canna-wnn
 Architecture: any
 Depends: xemacs21-support (= ${source:Version}), xemacs21-bin (= ${binary:Version}), ${shlibs:Depends}, xemacs21-mulesupport (= 2003.04.23-1), xemacs21-basesupport (= 2003.04.23-1), emacsen-common, ${misc:Depends}
+Conflicts: xemacs21-gnome-mule-canna-wnn
 Suggests: xfonts-cjk
 Provides: emacsen, info-browser, mail-reader, news-reader, www-browser, xemacs21
 Description: highly customizable text editor -- Mule binary compiled with Canna and Wnn
@@ -112,7 +115,7 @@
 Conflicts: xemacs-support, sgml-base ( 1.23)
 Replaces: xemacs-support
 Suggests: xemacs21-supportel (= ${source:Version})
-Depends: emacsen-common, xemacs21 (= ${source:Version}), ${misc:Depends}
+Depends: emacsen-common, ${misc:Depends}
 Description: highly customizable text editor -- architecture independent support files
  XEmacs is a full fledged programming language with a mail reader,
  news reader, info browser, web browser, calendar, 

Bug#787903: RM: serna-free/experimental -- ROM; removed in unstable

2015-06-06 Thread Joachim Breitner
Package: ftp.debian.org
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I just noticed that serna-free, which was removed two years ago, is
still lying around in experimental. I guess you can remove it.

Thanks,
Joachim

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlVyoDwACgkQ9ijrk0dDIGxqqQCgk+nWiGiqED1Jn2BjeynCz8hw
o5gAoJQ8GOPiLPVWCjFs+2nrDKRqXuCM
=3wP4
-END PGP SIGNATURE-


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



Bug#779885: info: Does not display a info-file from the start, if it contains (some) multibyte characters

2015-06-06 Thread Norbert Preining
Dear texinfo team,

down here at Debian we got a bug report concerning 5.2, but I can
confirm that the same happens with 5.9.92.

The mentioned case about coreutils is a bit particular, as there
are so many entries, but
info wdiff
also jumps into the Invocation instead of top of wdiff.

We are updating the dir file by looping over all info files and call
install-info $file $INFODIR/dir

I attach the gzipped version of the dir file on my system.

Additionally, it is interesting that the transformation to latin1
changes something.

All the best

Norbert

On Thu, 05 Mar 2015, Bjarni Ingi Gislason wrote:
 Package: info
 Version: 5.2.0.dfsg.1-6
 Severity: normal
 
 Dear Maintainer,
 
* What led up to the situation?
 
   Issuing command info coreutils.
 
* What was the outcome of this action?
 
   Output from info coreutils begins with chapter 2.14.
 
   Output from info wdiff begins with chapter 2.1.
 
   Display is normal, if the info-files have been transformed to latin-1 (8
 bit single byte) encoding before they are used.
 
   Using info coreutils | iconv -f utf-8 -t latin1//TRANSLIT does only
 show chapter 2.14.
 
   info wdiff | iconv -f utf-8 -t latin1//TRANSLIT does only show
 chapter 2.1.
 


PREINING, Norbert   http://www.preining.info
JAIST, Japan TeX Live  Debian Developer
GPG: 0x860CDC13   fp: F7D8 A928 26E3 16A1 9FA0  ACF0 6CAC A448 860C DC13



dir.gz
Description: Binary data


Bug#787004: FTBFS on amd64

2015-06-06 Thread Julien Cristau
On Fri, Jun  5, 2015 at 03:24:39 +0100, Wookey wrote:

 Package: linux

linux is a source not binary package name.

 Version: 4.0.4

That version does not exist.

 Followup-For: Bug #787004
 
[...]
 This does indeed allow the build to complete. Patch attached.
 
Or you could have noticed that this bug is tagged pending and the fix is
already in svn.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#787910: ruby-fog-storm-on-demand: fails to upgrade from 'jessie' - trying to overwrite /usr/lib/ruby/vendor_ruby/fog/storm_on_demand/shared.rb

2015-06-06 Thread Andreas Beckmann
Package: ruby-fog-storm-on-demand
Version: 0.1.1-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'jessie'.
It installed fine in 'jessie', then the upgrade to 'stretch' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

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

  Selecting previously unselected package ruby-fog-storm-on-demand.
  Preparing to unpack .../ruby-fog-storm-on-demand_0.1.1-1_all.deb ...
  Unpacking ruby-fog-storm-on-demand (0.1.1-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/ruby-fog-storm-on-demand_0.1.1-1_all.deb (--unpack):
   trying to overwrite 
'/usr/lib/ruby/vendor_ruby/fog/storm_on_demand/shared.rb', which is also in 
package ruby-fog 1.22.0-2
  Errors were encountered while processing:
   /var/cache/apt/archives/ruby-fog-storm-on-demand_0.1.1-1_all.deb


cheers,

Andreas


ruby-fog=1.22.0-2_ruby-fog-storm-on-demand=0.1.1-1.log.gz
Description: application/gzip


Bug#787781: [pkg-gnupg-maint] Bug#787781: gnupg-agent: broken pipe error when a program using agent is invoked by stdbuf -oL

2015-06-06 Thread nfb
 how many cores does the i386 machine have?  from the initial report, i
 see that your armhf machine is marked as SMP w/2 CPU cores.  How much
 RAM does each machine have?

The i386 machine is a core 2 Duo with 4Gb of RAM. The armhf one is an
arm chromebook, dual core with 2Gb of RAM.
Anyways on both machines RAM usage is well under a critical value, i 
guess 25%-30% at most...

 I'm cc'ing Colin Watson (the pass maintainer) here, maybe he can try to
 replicate the behavior you've observed in https://bugs.debian.org/787781

Yes it's a good idea... i'd also try to abstract the issue even more,
so if i manage to use gpg-agent in a way that doesn't involve pass,
(maybe asimmetrically signing/encrypting some files) and the error
shows up again when invoking via stdbuf, than it'd be likely and
strictly an issue on gpg-agent and not pass... (shouldn't it?)

Updates will follow...


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



Bug#787897: feedgenerator: Please provide a python3 module

2015-06-06 Thread Johannes Schauer
Source: feedgenerator
Version: 1.7-1
Severity: wishlist
Tags: patch
User: py3porters-de...@lists.alioth.debian.org
Usertags: patchme-python3

Hi,

while trying to get pelican build with python3, I noticed that one of
its dependencies, python-feedgenerator does not have a python3 version.

Please find a patch attached that rectifies this situation.

Thanks!

cheers, josch
diff -Nru feedgenerator-1.7/debian/changelog feedgenerator-1.7/debian/changelog
--- feedgenerator-1.7/debian/changelog	2013-09-10 16:17:09.0 +0200
+++ feedgenerator-1.7/debian/changelog	2015-06-06 07:49:01.0 +0200
@@ -1,3 +1,10 @@
+feedgenerator (1.7-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * add python3-feedgenerator for Python 3 support
+
+ -- Johannes Schauer jo...@debian.org  Sat, 06 Jun 2015 07:48:48 +0200
+
 feedgenerator (1.7-1) unstable; urgency=low
 
   * Add Homepage to debian/control
diff -Nru feedgenerator-1.7/debian/control feedgenerator-1.7/debian/control
--- feedgenerator-1.7/debian/control	2013-09-10 16:17:09.0 +0200
+++ feedgenerator-1.7/debian/control	2015-06-06 07:59:44.0 +0200
@@ -3,13 +3,20 @@
 Uploaders: Ondřej Surý ond...@debian.org
 Section: python
 Priority: optional
-Build-Depends: python-setuptools (= 0.6b3), python-all (= 2.6.6-3), debhelper (= 7)
+Build-Depends: python-setuptools (= 0.6b3), python-all (= 2.6.6-3), debhelper (= 7), python3-setuptools, python3-all, python-six, python3-six, python-tz, python3-tz
 Standards-Version: 3.9.4
 Homepage: https://github.com/dmdm/feedgenerator-py3k
 
 Package: python-feedgenerator
 Architecture: all
 Depends: ${misc:Depends}, ${python:Depends}
-Description: Syndication feed generation library
+Description: Syndication feed generation library (Python 2 version)
+ Feedgenerator is a standalone version of Django's feedgenerator, which
+ is a syndication feed generation library used for generating RSS.
+
+Package: python3-feedgenerator
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Syndication feed generation library (Python 3 version)
  Feedgenerator is a standalone version of Django's feedgenerator, which
  is a syndication feed generation library used for generating RSS.
diff -Nru feedgenerator-1.7/debian/pydist-overrides feedgenerator-1.7/debian/pydist-overrides
--- feedgenerator-1.7/debian/pydist-overrides	2013-09-10 16:17:09.0 +0200
+++ feedgenerator-1.7/debian/pydist-overrides	1970-01-01 01:00:00.0 +0100
@@ -1 +0,0 @@
-six python-six
diff -Nru feedgenerator-1.7/debian/python3-feedgenerator.install feedgenerator-1.7/debian/python3-feedgenerator.install
--- feedgenerator-1.7/debian/python3-feedgenerator.install	1970-01-01 01:00:00.0 +0100
+++ feedgenerator-1.7/debian/python3-feedgenerator.install	2015-06-06 07:49:41.0 +0200
@@ -0,0 +1 @@
+usr/lib/python3*
diff -Nru feedgenerator-1.7/debian/python-feedgenerator.install feedgenerator-1.7/debian/python-feedgenerator.install
--- feedgenerator-1.7/debian/python-feedgenerator.install	1970-01-01 01:00:00.0 +0100
+++ feedgenerator-1.7/debian/python-feedgenerator.install	2015-06-06 07:49:30.0 +0200
@@ -0,0 +1 @@
+usr/lib/python2*
diff -Nru feedgenerator-1.7/debian/rules feedgenerator-1.7/debian/rules
--- feedgenerator-1.7/debian/rules	2013-09-10 16:17:09.0 +0200
+++ feedgenerator-1.7/debian/rules	2015-06-06 07:52:42.0 +0200
@@ -4,6 +4,6 @@
 # Mon, 04 Mar 2013 11:44:26 +0100
 
 %:
-	dh $@ --with python2 --buildsystem=python_distutils
+	dh $@ --with python2,python3 --buildsystem=pybuild
 
 


Bug#787866: autogen: after upgrade to 5.18.5 autogen no longer works

2015-06-06 Thread Nikos Mavrogiannopoulos
On Fri, 2015-06-05 at 18:19 -0700, Bruce Korb wrote:
 export AUTOGEN_TRACE=everything AUTOGEN_TRACE_OUT='/tmp/ag-log.txt'

Log is attached.



===AutoGen starts - 13485:  autogen 'ocpasswd-args.def'
Guile Library Version 2.0.11
eval from file agInit.c line 80:
(debug-enable 'backtrace)
Definition Load:
prog_name[0] (text) from ocpasswd-args.def/2 at 0xba2b60
prog_title[0] (text) from ocpasswd-args.def/3 at 0xba1be8
prog_desc[0] (text) from ocpasswd-args.def/4 at 0xba1c30
disable_save[0] (text) from ocpasswd-args.def/5 at 0xba1c78
no_xlate[0] (text) from ocpasswd-args.def/6 at 0xba1cc0
gnu_usage[0] (text) from ocpasswd-args.def/7 at 0xba1d08
config_header[0] (text) from ocpasswd-args.def/8 at 0xba1d50
long_opts[0] (text) from ocpasswd-args.def/9 at 0xba1d98
no_misuse_usage[0] (text) from ocpasswd-args.def/10 at 0xba1de0
short_usage[0] (text) from ocpasswd-args.def/11 at 0xba1e28
explain[0] (text) from ocpasswd-args.def/12 at 0xba1e70
reorder_args[0] (text) from ocpasswd-args.def/13 at 0xba1eb8
argument[0] (text) from ocpasswd-args.def/14 at 0xba1f00
version[0] (text) from version.inc/1 at 0xba1f48
detail[0] (text) from ocpasswd-args.def/17 at 0xba1f90
copyright[0] (block) from ocpasswd-args.def/20 at 0xba1fd8
  date[0] (text) from ocpasswd-args.def/21 at 0xba2020
  owner[0] (text) from ocpasswd-args.def/22 at 0xba2068
  author[0] (text) from ocpasswd-args.def/23 at 0xba20b0
  eaddr[0] (text) from ocpasswd-args.def/24 at 0xba20f8
  type[0] (text) from ocpasswd-args.def/25 at 0xba2140
flag[0] (block) from ocpasswd-args.def/28 at 0xba2188
  name[0] (text) from ocpasswd-args.def/29 at 0xba21d0
  value[0] (text) from ocpasswd-args.def/30 at 0xba2218
  arg_type[0] (text) from ocpasswd-args.def/31 at 0xba2260
  descrip[0] (text) from ocpasswd-args.def/32 at 0xba22a8
  doc[0] (text) from ocpasswd-args.def/33 at 0xba22f0
flag[1] (block) from ocpasswd-args.def/36 at 0xba2338
  name[0] (text) from ocpasswd-args.def/37 at 0xba2380
  value[0] (text) from ocpasswd-args.def/38 at 0xba23c8
  arg_type[0] (text) from ocpasswd-args.def/39 at 0xba2410
  descrip[0] (text) from ocpasswd-args.def/40 at 0xba2458
  doc[0] (text) from ocpasswd-args.def/41 at 0xba24a0
flag[2] (block) from ocpasswd-args.def/44 at 0xba24e8
  name[0] (text) from ocpasswd-args.def/45 at 0xba2530
  value[0] (text) from ocpasswd-args.def/46 at 0xba2578
  descrip[0] (text) from ocpasswd-args.def/47 at 0xba25c0
  doc[0] (text) from ocpasswd-args.def/48 at 0xba2608
flag[3] (block) from ocpasswd-args.def/51 at 0xba2650
  name[0] (text) from ocpasswd-args.def/52 at 0xba2698
  value[0] (text) from ocpasswd-args.def/53 at 0xba26e0
  descrip[0] (text) from ocpasswd-args.def/54 at 0xba2728
  doc[0] (text) from ocpasswd-args.def/55 at 0xba2770
flag[4] (block) from ocpasswd-args.def/58 at 0xba27b8
  name[0] (text) from ocpasswd-args.def/59 at 0xba2800
  value[0] (text) from ocpasswd-args.def/60 at 0xba2848
  descrip[0] (text) from ocpasswd-args.def/61 at 0xba2890
  doc[0] (text) from ocpasswd-args.def/62 at 0xba28d8
help_value[0] (text) from ocpasswd-args.def/65 at 0xba2920
doc_section[0] (block) from ocpasswd-args.def/68 at 0xba2968
  ds_type[0] (text) from ocpasswd-args.def/69 at 0xba29b0
  ds_format[0] (text) from ocpasswd-args.def/70 at 0xba29f8
  ds_text[0] (text) from ocpasswd-args.def/71 at 0xba2a40
doc_section[1] (block) from ocpasswd-args.def/84 at 0xba2a88
  ds_type[0] (text) from ocpasswd-args.def/85 at 0xba2ad0
  ds_format[0] (text) from ocpasswd-args.def/86 at 0xba2b18
  ds_text[0] (text) from ocpasswd-args.def/87 at 0xba3ee0
doc_section[2] (block) from ocpasswd-args.def/105 at 0xba2f68
  ds_type[0] (text) from ocpasswd-args.def/106 at 0xba2fb0
  ds_format[0] (text) from ocpasswd-args.def/107 at 0xba2ff8
  ds_text[0] (text) from ocpasswd-args.def/108 at 0xba3040
marker '[=' loaded
marker '=][=' loaded
Starting h template
open_output_file 'ocpasswd-args.h' mode wb+
EXPR   ( E) in /usr/share/autogen/options.tpl at line 32
  ed 's@/autogen@/columns@'`
eval from file /usr/share/autogen/options.tpl line 32:
(shell CLexe=`echo ${AGexe} | sed 's@/autogen@/columns@'`
   test -x \${CLexe}\ || CLexe=`which columns`)


 (dne  *   /*  )
Server shell is pid 13486
S
Server First Start
erver shell /bin/bash
 
s*t a*r t*s 
* LOG ENTRY 1 * * * *
cd /home/nmav/cvs/ocserv/src
exec 82 2/dev/null

if test -n ${ZSH_VERSION+set}  (emulate sh) 12
then
  emulate sh
  NULLCMD=:

else case `set -o` in *posix*) set -o posix ;; esac
fi

trap_exit() {
case $1 in
0 | 10 | 15 )
exec 1- 2-
test -d ${tmp_dir}  rm -rf ${tmp_dir}
;;

* )
exec 18
echo trapped on signal ${1}
test -d ${tmp_dir}  \
echo temp directory has been retained:  ${tmp_dir}
esac
}

die() {
  echo Killing AutoGen ${AG_pid}
  echo FAILURE REASON:  $*
  kill -15 ${AG_pid}
  sleep 1
  kill -1  ${AG_pid}
  sleep 1
  kill -2  ${AG_pid}
  sleep 1
  kill -9  ${AG_pid}
  exit 1
} 8

mk_tmp_dir() {
  test -d ${tmp_dir}  return 0
  tmp_dir=`

Bug#787905: openni: FTBFS on arm64

2015-06-06 Thread Edmund Grimley Evans
Source: openni
Version: 1.5.4.0-10
Tags: patch

Here's a patch, rather similar to the ppc one.
diff -N -ru openni-1.5.4.0.orig/Include/Linux-AArch64/XnPlatformLinux-AArch64.h openni-1.5.4.0/Include/Linux-AArch64/XnPlatformLinux-AArch64.h
--- openni-1.5.4.0.orig/Include/Linux-AArch64/XnPlatformLinux-AArch64.h	1970-01-01 01:00:00.0 +0100
+++ openni-1.5.4.0/Include/Linux-AArch64/XnPlatformLinux-AArch64.h	2015-06-06 00:05:38.0 +0100
@@ -0,0 +1,43 @@
+/
+*   *
+*  OpenNI 1.x Alpha *
+*  Copyright (C) 2011 PrimeSense Ltd.   *
+*   *
+*  This file is part of OpenNI. *
+*   *
+*  OpenNI is free software: you can redistribute it and/or modify   *
+*  it under the terms of the GNU Lesser General Public License as published *
+*  by the Free Software Foundation, either version 3 of the License, or *
+*  (at your option) any later version.  *
+*   *
+*  OpenNI is distributed in the hope that it will be useful,*
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of   *
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+*  GNU Lesser General Public License for more details.  *
+*   *
+*  You should have received a copy of the GNU Lesser General Public License *
+*  along with OpenNI. If not, see http://www.gnu.org/licenses/.   *
+*   *
+/
+#ifndef _XN_PLATFORM_LINUX_AARCH64_H_
+#define _XN_PLATFORM_LINUX_AARCH64_H_
+
+// Start with Linux-x86, and override what's different
+#include ../Linux-x86/XnPlatformLinux-x86.h
+
+//---
+// Platform Basic Definition
+//---
+#undef XN_PLATFORM
+#undef XN_PLATFORM_STRING
+#undef XN_PLATFORM_ENDIAN_TYPE
+#define XN_PLATFORM XN_PLATFORM_LINUX_AARCH64
+#define XN_PLATFORM_STRING Linux-AArch64
+
+#ifdef __AARCH64EB__
+#define XN_PLATFORM_ENDIAN_TYPE XN_PLATFORM_IS_BIG_ENDIAN
+#else
+#define XN_PLATFORM_ENDIAN_TYPE XN_PLATFORM_IS_LITTLE_ENDIAN
+#endif // __AARCH64EB__
+
+#endif //_XN_PLATFORM_LINUX_AARCH64_H_
diff -N -ru openni-1.5.4.0.orig/Include/XnOS.h openni-1.5.4.0/Include/XnOS.h
--- openni-1.5.4.0.orig/Include/XnOS.h	2015-06-06 00:13:43.0 +0100
+++ openni-1.5.4.0/Include/XnOS.h	2015-06-06 00:06:31.0 +0100
@@ -44,7 +44,7 @@
 //---
 #if (XN_PLATFORM == XN_PLATFORM_WIN32)
 	#include Win32/XnOSWin32.h
-#elif (XN_PLATFORM == XN_PLATFORM_LINUX_X86 || XN_PLATFORM == XN_PLATFORM_LINUX_ARM || XN_PLATFORM == XN_PLATFORM_MACOSX || XN_PLATFORM == XN_PLATFORM_ANDROID_ARM || XN_PLATFORM == XN_PLATFORM_LINUX_POWERPC)
+#elif (XN_PLATFORM == XN_PLATFORM_LINUX_X86 || XN_PLATFORM == XN_PLATFORM_LINUX_ARM || XN_PLATFORM == XN_PLATFORM_LINUX_AARCH64 || XN_PLATFORM == XN_PLATFORM_MACOSX || XN_PLATFORM == XN_PLATFORM_ANDROID_ARM || XN_PLATFORM == XN_PLATFORM_LINUX_POWERPC)
 	#include Linux-x86/XnOSLinux-x86.h
 #elif defined(_ARC)
 	#include ARC/XnOSARC.h
diff -N -ru openni-1.5.4.0.orig/Include/XnPlatform.h openni-1.5.4.0/Include/XnPlatform.h
--- openni-1.5.4.0.orig/Include/XnPlatform.h	2015-06-06 00:13:43.0 +0100
+++ openni-1.5.4.0/Include/XnPlatform.h	2015-06-06 00:07:21.0 +0100
@@ -36,6 +36,7 @@
 #define XN_PLATFORM_MACOSX 8
 #define XN_PLATFORM_ANDROID_ARM 9
 #define XN_PLATFORM_LINUX_POWERPC 10
+#define XN_PLATFORM_LINUX_AARCH64 11
 
 #define XN_PLATFORM_IS_LITTLE_ENDIAN 1
 #define XN_PLATFORM_IS_BIG_ENDIAN2
@@ -67,6 +68,8 @@
 	#include Linux-x86/XnPlatformLinux-x86.h
 #elif (__linux__  __arm__)
 	#include Linux-Arm/XnPlatformLinux-Arm.h
+#elif (__linux__  __aarch64__)
+	#include Linux-AArch64/XnPlatformLinux-AArch64.h
 #elif (__linux__  __powerpc__)
 	#include Linux-Powerpc/XnPlatformLinux-Powerpc.h
 #elif _ARC
diff -N -ru openni-1.5.4.0.orig/Include/XnUSBDevice.h openni-1.5.4.0/Include/XnUSBDevice.h
--- openni-1.5.4.0.orig/Include/XnUSBDevice.h	2015-06-06 00:13:43.0 +0100
+++ openni-1.5.4.0/Include/XnUSBDevice.h	2015-06-06 00:07:56.0 +0100
@@ -48,7 +48,7 @@
 	#define USB_DT_DEVICE_SIZE 0
 	#define USB_DT_DEVICE 0
 
-#elif (XN_PLATFORM == XN_PLATFORM_LINUX_X86 || XN_PLATFORM 

Bug#785529: gamera: build not reproducible

2015-06-06 Thread Daniel Stender
For the record, the diff remains for 3.4.2+svn1435-1. Though the Jenkins run 
does
not always triggers this problem, my local debbindiff 20 protocol [1] does.

DS

[1] http://www.danielstender.com/buildlogs/gamera_3.4.2+svn1435-1.html 

-- 
http://qa.debian.org/developer.php?login=debian%40danielstender.com
4096R/DF5182C8
46CB 1CA8 9EA3 B743 7676 1DB9 15E0 9AF4 DF51 82C8


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



Bug#787857: [PKG-Openstack-devel] Bug#787857: sphinxcontrib-programoutput: FTBFS with Sphinx 1.3: tests failures

2015-06-06 Thread Thomas Goirand
On 06/05/2015 08:03 PM, Dmitry Shachnev wrote:
 Package: sphinxcontrib-programoutput
 Version: 0.8-3
 User: python-modules-t...@lists.alioth.debian.org
 Usertags: sphinx1.3
 Forwarded: https://github.com/lunaryorn/sphinxcontrib-programoutput/pull/4
 
 sphinxcontrib-programoutput FTBFS with Sphinx 1.3 (which is available in 
 experimental)
 because that some tests fail due to a warning about theme rename issued by 
 Sphinx.
 
 See https://gist.github.com/mitya57/1643a7c1666b650a0de5 for the tests output.
 
 I have created a pull request upstream which will fix this issue.
 
 --
 Dmitry Shachnev

Hi,

If you are talking about this:
https://github.com/mitya57/sphinxcontrib-programoutput/commit/83502056efa0aaed2a5edbd1f44a28d9d5d4815d

then IMO, that's a wrong way to fix things. The package now will only
work with Sphinx 1.3, and not with 1.2. Which means that backports to
Jessie will not be possible.

Do you know how we can simply test for the presence of the basic or the
default theme? It'd be nicer to do something like this (and better than
stupidly checking the sphinx version).

Cheers,

Thomas Goirand (zigo)


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



Bug#787882: latexila: FTBFS with valac 0.28

2015-06-06 Thread Michael Biebl
Control: tags -1 fixed-upstream patch

On Fri, 05 Jun 2015 23:45:22 +0200 bi...@debian.org wrote:
 Source: latexila
 Version: 3.14.2-1
 Severity: important
 User: pkg-vala-maintain...@lists.alioth.debian.org
 Usertags: vala-0.28
 
 Hi,
 
 We plan to make vala 0.28 the default vala compiler soon. It's
 currently in the process of being uploaded to experimental.
 
 Your package latexila declares a build dependency on valac.
 
 During a rebuild with this new version, latexila failed to build. The
 build logs can be found at
 https://people.debian.org/~biebl/buildlogs-vala-0.28/latexila
 
 Please prepare your package to build successfully with vala 0.28.
 Once vala 0.28 is uploaded to unstable, this bug will be bumped to
 serious.

This is fixed in the latest upstream release of latexila by commit
https://git.gnome.org/browse/latexila/commit/?id=9d90ddfabdcb2184b804e2e3a8a43b49a87308be


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



signature.asc
Description: OpenPGP digital signature


Bug#787889: general: USB keyboard stops working after a few seconds due to USB suspend

2015-06-06 Thread Jérémy Lal
2015-06-06 2:19 GMT+02:00 Jesse Hallett halle...@gmail.com:

 Package: general
 Severity: important

 Dear Maintainer,

 * What led up to the situation?

 Upgraded packages on 2015-05-04. Upgrades included kernel update from
 3.16.0-4-amd64 to 4.0.0-1-amd64.

 * What exactly did you do (or not do) that was effective (or
   ineffective)?

 Attempted to use USB keyboard in, in Xorg and in virtual TTY.

 * What was the outcome of this action?

 There appeared to be no input from the keyboard. After disconnecting and
 reconnecting the keyboard it functioned; but after a period of seconds it
 consistently stopped working until it was disconnected and reconnected
 again.

 * What outcome did you expect instead?

 I expected keyboard input to work consistently.

 * Is there a workaround?

 I am able to work around the issue by overriding USB power management for
 the keyboard device:

 cat on | sudo tee /sys/bus/usb/devices/3-1.2.2/power/level



Hey hey, i thought it was only me keyboard suddenly stopping from time
to time (more like every ten minutes).
i think this has to do with either the recent systemd upgrade or the upower
upgrades, but it's hard to say.

any i am still using linux-image 3.16.x amd64 so the issue doesn't come
from kernel.

Jérémy.


Bug#775733: closed by Mark Brown broo...@debian.org (Bug#775733: fixed in xemacs21 21.4.22-12)

2015-06-06 Thread Andreas Beckmann
On 2015-04-27 14:43, Andreas Beckmann wrote:
 On 2015-04-26 10:43, Debian Bug Tracking System wrote:
 #775733: xemacs21-gnome-*: hangs during upgrade from squeeze - wheezy - 
 jessie

 Thanks for getting this fixed in sid, please fix this in jessie, too.
 If you need help there, please let me know.

I've now filed jessie-pu request http://bugs.debian.org/787904
for backporting the recent fixes to jessie.


Andreas


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



Bug#786786: libmaven-compiler-plugin-java,libmaven-compiler-plugin-2.5-java: file overwrite: […]/2.5.1/maven-compiler-plugin-2.5.1.jar

2015-06-06 Thread Andreas Beckmann
Followup-For: Bug #786786

Similar problems with the -doc package:

  Selecting previously unselected package libmaven-compiler-plugin-2.5-java-doc.
  Preparing to unpack .../libmaven-compiler-plugin-2.5-java-doc_2.5.1-3_all.deb 
...
  Unpacking libmaven-compiler-plugin-2.5-java-doc (2.5.1-3) ...
  dpkg: error processing archive 
/var/cache/apt/archives/libmaven-compiler-plugin-2.5-java-doc_2.5.1-3_all.deb 
(--unpack):
   trying to overwrite 
'/usr/share/maven-repo/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1-javadoc.jar',
 which is also in package libmaven-compiler-plugin-java-doc 2.5.1-1
  Errors were encountered while processing:
   /var/cache/apt/archives/libmaven-compiler-plugin-2.5-java-doc_2.5.1-3_all.deb


Andreas


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



Bug#787911: reportbug: Read config from XDG_CONFIG_HOME/debian/reportbugrc.

2015-06-06 Thread Rodolphe PELLOUX-PRAYER
Package: reportbug
Version: 6.6.3
Severity: wishlist
Tags: patch

Hi,

Here a patch to allow use of XDG_CONFIG_HOME/debian/reportbugrc for settings.
Reading ~/.reportbugrc is still provided for convenience.

Regards,
Rodolphe

-- Package-specific info:
** Environment settings:
INTERFACE=text

** /home/rodolphe/.reportbugrc:
reportbug_version 6.6.3
mode advanced
ui text
email rodol...@damsy.net
smtphost mail.damsy.net:587
smtpuser rodolphe
smtptls

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

Kernel: Linux 4.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages reportbug depends on:
ii  apt   1.1~exp8
ii  python2.7.9-1
ii  python-reportbug  6.6.3
pn  python:anynone

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail   none
ii  debconf-utils1.5.56
pn  debsums  none
pn  dlocate  none
pn  emacs23-bin-common | emacs24-bin-common  none
ii  file 1:5.22+15-2
ii  gnupg1.4.19-3
ii  msmtp-mta [mail-transport-agent] 1.6.2-1
ii  python-gtk2  2.24.0-4
pn  python-gtkspell  none
pn  python-urwid none
pn  python-vte   none
ii  xdg-utils1.1.0~rc1+git20111210-7.4

Versions of packages python-reportbug depends on:
ii  apt   1.1~exp8
ii  python-debian 0.1.27
ii  python-debianbts  1.12
pn  python:anynone

python-reportbug suggests no packages.

-- no debconf information
From b08e22a0914315396a241731856ea13e521da0cd Mon Sep 17 00:00:00 2001
From: Rodolphe PELLOUX-PRAYER rodol...@damsy.net
Date: Sat, 6 Jun 2015 10:34:28 +0200
Subject: [PATCH] Read reportbug config from XDG_CONFIG_HOME too.

---
 bin/reportbug| 21 ++---
 man/reportbug.1  |  9 +
 man/reportbug.conf.5 |  4 ++--
 reportbug/utils.py   |  3 ++-
 share/script | 25 ++---
 5 files changed, 37 insertions(+), 25 deletions(-)

diff --git a/bin/reportbug b/bin/reportbug
index 969e798..7761ce7 100755
--- a/bin/reportbug
+++ b/bin/reportbug
@@ -539,7 +539,7 @@ def offer_configuration(options):
 'the first time you have used reportbug, we are '
 'configuring its behavior.  These settings will be '
 'saved to the file %s, which you will be free to '
-'edit further.\n\n', utils.USERFILE)
+'edit further.\n\n', utils.XDGFILE)
 mode = ui.menu('Please choose the default operating mode for reportbug.',
utils.MODES, 'Select mode: ', options.mode,
order=utils.MODELIST)
@@ -646,21 +646,28 @@ def offer_configuration(options):
' for example, http://192.168.1.1:3128/. '
'Just press ENTER if you don\'t have one or don\'t know.',
empty_ok=True, force_prompt=True)
-
+
 if os.path.exists(utils.USERFILE):
+CONFFILE = utils.USERFILE
+else:
+CONFFILE = utils.XDGFILE
+if not os.path.exists(os.path.dirname(CONFFILE)):
+os.mkdir(os.path.dirname(CONFFILE))
+
+if os.path.exists(CONFFILE):
 try:
-os.rename(utils.USERFILE, utils.USERFILE+'~')
+os.rename(CONFFILE, CONFFILE+'~')
 except OSError:
-ui.display_failure('Unable to rename %s as %s~\n', utils.USERFILE,
-   utils.USERFILE)
+ui.display_failure('Unable to rename %s as %s~\n', CONFFILE,
+   CONFFILE)
 
 try:
-fd = os.open(utils.USERFILE, os.O_WRONLY|os.O_TRUNC|os.O_CREAT,
+fd = os.open(CONFFILE, os.O_WRONLY|os.O_TRUNC|os.O_CREAT,
  0600)
 except OSError, x:
 efail('Unable to save %s; most likely, you do not have a '
 'home directory.  Please fix this before using '
-'reportbug again.\n', utils.USERFILE)
+'reportbug again.\n', CONFFILE)
 
 fp = os.fdopen(fd, 'w')
 print  fp, '# reportbug preferences file'
diff --git a/man/reportbug.1 b/man/reportbug.1
index df33de5..9a58b58 100644
--- a/man/reportbug.1
+++ b/man/reportbug.1
@@ -93,9 +93,10 @@ Specify report class for GNATS BTSes.
 .TP
 .B \-\-configure
 Rerun the \fBreportbug\fP first time configuration routine, and write
-a new \fB$HOME/.reportbugrc\fP file.  This will erase any pre-existing
+a new \fB$XDG_CONFIG_HOME/debian/reportbugrc\fP file (or

Bug#787913: libstdc++-arm-none-eabi-newlib: fails to upgrade from 'jessie' - trying to overwrite /usr/share/gcc-4.9/python/libstdcxx/v6/printers.py

2015-06-06 Thread Andreas Beckmann
Package: libstdc++-arm-none-eabi-newlib
Version: 4.9.2-18+6
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'jessie'.
It installed fine in 'jessie', then the upgrade to 'stretch' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

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

  Selecting previously unselected package libnewlib-arm-none-eabi.
  Preparing to unpack 
.../libnewlib-arm-none-eabi_2.1.0+git20140818.1a8323b-2_all.deb ...
  Unpacking libnewlib-arm-none-eabi (2.1.0+git20140818.1a8323b-2) ...
  Selecting previously unselected package libstdc++-arm-none-eabi-newlib.
  Preparing to unpack .../libstdc++-arm-none-eabi-newlib_4.9.2-18+6_all.deb ...
  Unpacking libstdc++-arm-none-eabi-newlib (4.9.2-18+6) ...
  dpkg: error processing archive 
/var/cache/apt/archives/libstdc++-arm-none-eabi-newlib_4.9.2-18+6_all.deb 
(--unpack):
   trying to overwrite '/usr/share/gcc-4.9/python/libstdcxx/v6/printers.py', 
which is also in package libstdc++6:amd64 4.9.2-10
  dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/libstdc++-arm-none-eabi-newlib_4.9.2-18+6_all.deb
 

cheers,

Andreas


libstdc++6=4.9.2-10_libstdc++-arm-none-eabi-newlib=4.9.2-18+6.log.gz
Description: application/gzip


Bug#787912: libdata-dump-streamer-perl: FTBFS with perl 5.22

2015-06-06 Thread Dominic Hargreaves
Source: libdata-dump-streamer-perl
Version: 2.38-2
Severity: important
User: debian-p...@lists.debian.org
Usertags: perl-5.22-transition
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=102369

This package FTBFS with perl 5.22:

Test Summary Report
---
t/globtest.t  (Wstat: 768 Tests: 19 Failed: 3)
Failed 3/24 test programs. 5/369 subtests failed.
  Failed tests:  5-7
  Non-zero exit status: 3
t/madness.t   (Wstat: 256 Tests: 7 Failed: 1)
  Failed test:  7
  Non-zero exit status: 1
t/madness_json.t  (Wstat: 256 Tests: 7 Failed: 1)
  Failed test:  7
  Non-zero exit status: 1
Files=24, Tests=369,  6 wallclock secs ( 0.10 usr  0.14 sys +  4.56 cusr  0.40 
csys =  5.20 CPU)
Result: FAIL

Cheers,
Dominic.


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



Bug#787889: Acknowledgement (general: USB keyboard stops working after a few seconds due to USB suspend)

2015-06-06 Thread Jesse Hallett
I realized I should add some additional details.

The affected computer is a Lenovo Thinkpad W530 laptop.

I tested two very different keyboards with the same results. I also
connected one of those keyboards to a coworkers machine, and found no
issues with the same keyboard on a different machine.

On Fri, Jun 5, 2015 at 5:24 PM, Debian Bug Tracking System
ow...@bugs.debian.org wrote:
 Thank you for filing a new Bug report with Debian.

 This is an automatically generated reply to let you know your message
 has been received.

 Your message is being forwarded to the package maintainers and other
 interested parties for their attention; they will reply in due course.

 Your message has been sent to the package maintainer(s):
  debian-de...@lists.debian.org

 If you wish to submit further information on this problem, please
 send it to 787...@bugs.debian.org.

 Please do not send mail to ow...@bugs.debian.org unless you wish
 to report a problem with the Bug-tracking system.

 --
 787889: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787889
 Debian Bug Tracking System
 Contact ow...@bugs.debian.org with problems


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



Bug#785072: [LCFC] templates://cobbler/{cobbler.templates}

2015-06-06 Thread Justin B Rye
Christian PERRIER wrote:
 This is the last call for comments for the review of debconf
 templates for cobbler.

Embarrassing paste-o:

 Package: koan
[...]
 Description: kickstart-over-a-network (koan)
  Cobbler is a network install server supporting PXE, virtualized installs,
  and reinstalling existing Linux machines (the last two modes use an
  integrated helper tool, koan). Cobbler's advanced features include
  importing distributions from DVDs and rsync mirrors, Kickstart templating,
  integrated yum mirroring, and built-in DHCP/DNS management. It has a
  Python and XMLRPC API for integration with other applications, and there
  is also a web interface.
  Cobbler is a network install server. Cobbler supports PXE, virtualized
  installs, and reinstalling existing Linux machines. The last two modes use a
  helper tool, koan, that integrates with cobbler. Cobbler's advanced 
 features
^^
(I notice that after I had accidentally failed to delete this
paragraph I went on to correct its use of single quotes!)

  include importing distributions from DVDs and rsync mirrors, kickstart
  templating, integrated yum mirroring, and built-in DHCP/DNS Management.
  Cobbler has a Python and XMLRPC API for integration with other applications.
  There is also a web interface.
  .
  This package provides Koan. Koan stands for kickstart-over-a-network. It's a
  Cobbler helper tool that supports virtualized guests installs and 
 reinstalling
  existing Linux machines.

Oh, and there are problems in the final paragraphs of the two Koan
packages, too.  It was supposed to become:

   Koan, Kickstart-Over-A-Network, is a Cobbler client that supports
   virtualized guests installs and reinstalling existing Linux machines.

plus for python-koan:
   
This package provides the Python libraries for koan.

Revised patch attached... though it's still diffing against the
unstable version, since I don't understand how to check a whole
package out of git.


Meanwhile, can Thomas confirm that the version we're about to ask
translators to work on does actually say what it needs to?
-- 
JBR with qualifications in linguistics, experience as a Debian
sysadmin, and probably no clue about this particular package
Template: cobbler/password
Type: password
_Description: New password for the cobbler user:
 It is highly recommended that you set a password for the administrative
 cobbler user.
 .
 It can be reconfigured later using dpkg-reconfigure -plow cobbler, and
 users can be added to cobbler with
 .
  htdigest /etc/cobbler/users.digest Cobbler USERNAME

Template: cobbler/server
Type: string
Default: localhost
_Description: Address of the Cobbler server:
 Please specify the hostname or IP address that clients will use for
 this server during installs.
 .
 This address will be written into /etc/cobbler/settings as the
 value of the server field. For Kickstart features to work properly,
 it must be set to something other than localhost.

Template: cobbler/next_server
Type: string
Default: 127.0.0.1
_Description: IP address of the boot server:
 Please specify the local IP address of the boot server on the PXE
 network.
 .
 This address will be written into /etc/cobbler/settings as the
 value of the next_server field. For PXE features to work properly,
 it must be set to something other than 127.0.0.1.
Source: cobbler
Section: admin
Priority: optional
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Uploaders: Thomas Goirand z...@debian.org
Build-Depends: debhelper (= 9),
   dh-python,
   openstack-pkg-tools,
   git-core,
   po-debconf,
   python-all (= 2.6.6-3~),
   python-setuptools
Build-Depends-Indep: lsb-release,
 python-cheetah,
 python-netaddr,
 python-nose,
 python-simplejson,
 python-twisted,
 python-urlgrabber,
 python-yaml
Standards-Version: 3.9.6
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/cobbler.git
Vcs-Git: git://anonscm.debian.org/openstack/cobbler.git
Homepage: http://www.cobblerd.org

Package: python-cobbler
Section: python
Architecture: all
Pre-Depends: dpkg (= 1.15.6~)
Depends: hardlink,
 lsb-release,
 openssl,
 python-cheetah,
 python-distro-info,
 python-django,
 python-netaddr,
 python-simplejson,
 python-twisted,
 python-urlgrabber,
 python-yaml,
 rsync,
 ${misc:Depends},
 ${python:Depends}
Description: network boot, install, and update server - Python modules
 Cobbler is a network install server supporting PXE, virtualized installs,
 and reinstalling existing Linux machines (the last two modes use an
 integrated helper tool, koan). Cobbler's advanced features include
 importing distributions from DVDs and rsync mirrors, Kickstart 

Bug#782106: openexr-doc: fails to upgrade from 'sid' - trying to overwrite /usr/share/doc-base/openexr-tech-intro

2015-06-06 Thread Andreas Beckmann
Followup-For: Bug #782106
Control: found -1 1.6.1-11

More problems of this sort:

  Selecting previously unselected package openexr-doc.
  Preparing to unpack .../openexr-doc_1.6.1-11_all.deb ...
  Unpacking openexr-doc (1.6.1-11) ...
  dpkg: error processing archive 
/var/cache/apt/archives/openexr-doc_1.6.1-11_all.deb (--unpack):
   trying to overwrite '/usr/share/doc-base/openexr-ilmimf', which is also in 
package openexr 1.6.1-8
  Errors were encountered while processing:
   /var/cache/apt/archives/openexr-doc_1.6.1-11_all.deb


Andreas


openexr=1.6.1-8_openexr-doc=1.6.1-11.log.gz
Description: application/gzip


Bug#787928: libdbd-sqlite3: produces only one table with no rows from a large gnuca dataset

2015-06-06 Thread Anonymous
Package: libdbd-sqlite3
Version: 0.9.0-3
Severity: normal

Dear Maintainer,

Using the gnucash export feature, an sqlite3 db file is created, but
it contains no data.  E.g.

  $ sqlite3 jailed_data.sqlite3.gnucash .schema
  CREATE TABLE gnclock ( Hostname varchar(255), PID int );

  $ sqlite3 jailed_data.sqlite3.gnucash select * from gnclock;
  no output
  
There is are thousands of records in gnucash.  This is the gnucash
version:

GnuCash 2.6.4
This copy was built from rev 79bdcf1+ on 2014-11-15.


-- System Information:
Debian Release: 8.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libdbd-sqlite3 depends on:
ii  libc6  2.19-18
ii  libdbi10.9.0-4
ii  libsqlite3-0   3.8.7.1-1+deb8u1
ii  multiarch-support  2.19-18

libdbd-sqlite3 recommends no packages.

libdbd-sqlite3 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#787929: lintian: warn against security-tracker TEMP references in changelog

2015-06-06 Thread Jakub Wilk

Package: lintian
Version: 2.5.31
Severity: wishlist

In #785254, Salvatore Bonaccorso wrote:

On Wed, May 13, 2015 at 10:53:22PM +0200, Daniel Stender wrote:

+  * add fix-insecure-use-of-tmp-when-calling-c44.diff, fix
+of security issue TEMP-0784889-495CCA, see #784888 (closed
+in Sid by 0.4-1).


Do not use these temporary items since they can change over time (e.g. 
when a CVE is assigned they do not exist anymore, or even if we change 
some metadata in the security-tracker. So I suggest to just write an 
expalanation what the issue is, or -- if a CVE is assigned -- include 
the CVE id.


DCS finds a few cases where such a temporary identifier was used in a 
changelog:

https://codesearch.debian.net/search?q=\bTEMP-[0-9]%2B-[0-9A-F]%2B\b+path%3Achangelog

It would be nice if Lintian could catch such mistakes.

--
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#787689: [armhf] Internal compiler error while building qtbase (qt5)

2015-06-06 Thread Lisandro Damián Nicanor Pérez Meyer
On Saturday 06 June 2015 10:15:42 Lisandro Damián Nicanor Pérez Meyer wrote:
 Hi GCC maintainers! Could you check Sune's poposed patches?
 
 I'm sorry for my insistence, but we really need to get this fixed to let the
 transition go and do it before gcc5 becomes the default compiler.

Looking at the changelog  of 4.9.2-20 it might have been already fixed. Will 
check it.

Thnaks a lot!!!

-- 
Geek Inside!

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Bug#787931: rhythmbox: It doesn't play any songs. No mp3 or stream radio.

2015-06-06 Thread alberto c.m
Package: rhythmbox
Version: 3.2.1-1
Severity: important
Tags: upstream

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
I just wanted to play mp3 songs with this pkg. As I try it returns ann
error message.
So I try after that to play stream music, thats where I get ann
explicite error message Error while trying to create the playbin element.
Check your Gstreamer installation
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
I search for the gstreamer package with aptitude search gstreamer.
But all seems to be OK.
I delete the ~./gstreamer folder
But this last actionn didn't help.
   * What was the outcome of this action?
The issue still persists, as already mention above.
   * What outcome did you expect instead?
Not much...:P

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



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

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages rhythmbox depends on:
ii  adwaita-icon-theme  3.16.2.1-2
ii  dbus1.8.18-1
ii  gstreamer1.0-plugins-base   1.4.5-2
ii  gstreamer1.0-plugins-good   1.4.5-2+b1
ii  gstreamer1.0-x  1.4.5-2
ii  libatk1.0-0 2.16.0-2
ii  libc6   2.19-18
ii  libcairo-gobject2   1.14.2-2
ii  libcairo2   1.14.2-2
ii  libgdk-pixbuf2.0-0  2.31.4-2
ii  libgirepository-1.0-1   1.44.0-1+b1
ii  libglib2.0-02.44.1-1
ii  libgstreamer-plugins-base1.0-0  1.4.5-2
ii  libgstreamer1.0-0   1.4.5-2
ii  libgtk-3-0  3.14.5-1
ii  libgudev-1.0-0  219-12
ii  libjavascriptcoregtk-3.0-0  2.4.9-1
ii  libjson-glib-1.0-0  1.0.4-1
ii  libnotify4  0.7.6-2
ii  libpango-1.0-0  1.36.8-3
ii  libpangocairo-1.0-0 1.36.8-3
ii  libpeas-1.0-0   1.12.1-2
ii  librhythmbox-core9  3.2.1-1
ii  libsoup2.4-12.50.0-2
ii  libtdb1 1.3.5-1
ii  libtotem-plparser18 3.10.3-1
ii  libwebkitgtk-3.0-0  2.4.9-1
ii  libx11-62:1.6.3-1
ii  libxml2 2.9.1+dfsg1-5
ii  media-player-info   22-2
ii  rhythmbox-data  3.2.1-1
ii  zlib1g  1:1.2.8.dfsg-2+b1

Versions of packages rhythmbox recommends:
ii  avahi-daemon   0.6.31-5
ii  gstreamer1.0-plugins-ugly  1.4.5-2+b1
ii  gstreamer1.0-pulseaudio1.4.5-2+b1
ii  gvfs-backends  1.24.1-2
ii  notification-daemon0.7.6-2
ii  rhythmbox-plugins  3.2.1-1
ii  yelp   3.16.1-1

Versions of packages rhythmbox suggests:
pn  gnome-codec-install  none
ii  gnome-control-center 1:3.14.4-1
ii  gstreamer1.0-plugins-bad 1.4.5-2
ii  rhythmbox-plugin-cdrecorder  3.2.1-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#567418: dict-jargon: Use w3m instead of elinks to build jargon.txt

2015-06-06 Thread Andreas Beckmann
Followup-For: Bug #567418

The B-D elinks-lite is no longer built by src:elinks, making dict-jargon
FTBFS due to an unsatisfied build-dependency in sid.


Andreas


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



Bug#740753: (no subject)

2015-06-06 Thread Emmanuel Kasper
Packer has the following depencies:

It depends on  gox which is used as a compilation tool on top of Go:

github.com/mitchellh/gox

For packer itself:
go list -f '{{ join .Deps \n }}' github.com/mitchellh/packer

github.com/hashicorp/atlas-go/archive
github.com/hashicorp/atlas-go/v1
github.com/hashicorp/go-checkpoint
github.com/hashicorp/go-msgpack/codec
github.com/hashicorp/go-version
github.com/hashicorp/yamux
github.com/mitchellh/cli
github.com/mitchellh/iochan
github.com/mitchellh/mapstructure
github.com/mitchellh/osext
github.com/mitchellh/packer/command
github.com/mitchellh/packer/common/command
github.com/mitchellh/packer/common/json
github.com/mitchellh/packer/common/uuid
github.com/mitchellh/packer/fix
github.com/mitchellh/packer/packer
github.com/mitchellh/packer/packer/plugin
github.com/mitchellh/packer/packer/rpc
github.com/mitchellh/panicwrap
github.com/mitchellh/prefixedio
golang.org/x/crypto/ssh/terminal


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



Bug#787917: qa.debian.org: uscan.pl: cannot handle watchfile with repacksuffix

2015-06-06 Thread Sebastian Ramacher
Package: qa.debian.org
Severity: normal

uscan.pl fails if the debian/watch has a repacksuffix set:

uscan.pl warning: unrecognised option repacksuffix=+ds1

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: Digital signature


Bug#644019: reglookup: Please package latest upstream (1.0.1)

2015-06-06 Thread Raphael Hertzog
Hi,

On Fri, 05 Jun 2015, Tim wrote:
 Ok, that makes sense.  Right now the python library installation is
 all lumped in with the install target.  You could build binaries
 without interference, but once you tried to install just certain
 pieces, the python wrappers will always install, which is probably not
 what you want.
 
 Would it make sense to create sub-targets, say install_python,
 install_lib, etc so that you can call the appropriate one depending
 on which sub-package you're building?  Or would you suggest another
 approach?

That should work, yes.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Support Debian LTS: http://www.freexian.com/services/debian-lts.html
Learn to master Debian: http://debian-handbook.info/get/


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



Bug#779885: info: Does not display a info-file from the start, if it contains (some) multibyte characters

2015-06-06 Thread Gavin Smith
On 6 June 2015 at 08:24, Norbert Preining prein...@logic.at wrote:
 We are updating the dir file by looping over all info files and call
 install-info $file $INFODIR/dir

 I attach the gzipped version of the dir file on my system.

Please have a look at coreutils.info (or coreutils.info-1) and look
for a line starting INFO-DIR-SECTION followed by
START-INFO-DIR-ENTRY, and look up until END-INFO-DIR-ENTY. There
may be several extents of lines like this. These contain the lines
that should be copied into dir.

Looking at the dir file you attached, there are the following entries:

* Coreutils: (coreutils).   Core GNU (file, text, shell) utilities.
* coreutils: (coreutils)coreutils invocation.   Multi-call program.

The two labels are Coreutils and coreutils. Info prefers an exact
case match, so it will display (coreutils)coreutils invocation.

Info is operating as expected here. The problem is with the Info file
- it was a bad idea to add that dir entry.

   Display is normal, if the info-files have been transformed to latin-1 (8
 bit single byte) encoding before they are used.

   Using info coreutils | iconv -f utf-8 -t latin1//TRANSLIT does only
 show chapter 2.14.

I don't think that iconv in particular is the issue here: piping the
output of info into any program causes it only to output the node it
finds and any other nodes below it in the document structure. Try
info coreutils | less and see if you have the same thing.


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



Bug#787862: pdf-presenter-console: Fails to build on mipsel

2015-06-06 Thread Gustavo Prado Alkmim
Hi.

Tried to reproduce the bug several times on my mipsel board, but it is not
reproducing. I suggest to trigger the build again on buildd.

Thanks,




Gustavo Prado Alkmim
Bacharel em Ciência da Computação (UFLA)
Doutorando em Ciência da Computação (UNICAMP)

--
Do que adianta para o homem ganhar o mundo e perder sua alma???

2015-06-05 16:29 GMT-03:00 Gustavo Prado Alkmim alk...@ic.unicamp.br:

 Package: pdf-presenter-console
 Version: 4.0.0-1
 Severity: serious
 Justification: fails to build from source (but built successfully in the
 past)

 Dear Maintainer,

 Package is failing to build on buildd. I'm working on a fix and I will
 attach it as soon as possible. Full log is attached.

 Build Log tail:

 dh build-arch --parallel
dh_testdir -a -O--parallel
debian/rules override_dh_auto_configure
 make[1]: Entering directory '/«PKGBUILDDIR»'
 dh_auto_configure -- -DSYSCONFDIR=/etc
 cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON
 -DCMAKE_BUILD_TYPE=None -DSYSCONFDIR=/etc
 dh_auto_configure: cmake .. -DCMAKE_INSTALL_PREFIX=/usr
 -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DSYSCONFDIR=/etc died
 with signal 11
 make[1]: *** [override_dh_auto_configure] Error 2
 debian/rules:7: recipe for target 'override_dh_auto_configure' failed
 make[1]: Leaving directory '/«PKGBUILDDIR»'
 make: *** [build-arch] Error 2
 debian/rules:4: recipe for target 'build-arch' failed
 dpkg-buildpackage: error: debian/rules build-arch gave error exit status 2



Bug#630174: debian-policy: forbid installation into /lib64

2015-06-06 Thread Bill Allombert
On Mon, May 11, 2015 at 11:30:54AM +0200, Bill Allombert wrote:
  In any case I'm not quite sure whether shipping files in lib64 in amd64
  packages (juffed/juffed-dev and zynaddsubfx-dssi do this now) is OK.
 
 I only found 
 zynaddsubfx-dssi: /usr/lib64/dssi/libzynaddsubfx_dssi.so
 which I think is a RC bug.

I reported it as 787919.

Cheers,
-- 
Bill. ballo...@debian.org

Imagine a large red swirl here. 


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



Bug#783381: upgrade from wheezy to jessie on a PowerMac G4 Silver/Confirmation

2015-06-06 Thread Manfred Stock
Package: upgrade-reports, linux-image-3.16.0-4-powerpc
Followup-For: Bug #783381

Hi,

 And now to the graphics problems :-(

on my system, I could improve the situation by replacing GDM3 with Lightdm, and
Gnome3 with the Awesome or Fluxbox window manager (since they actually started
and displayed something, which was not the case with GDM or Gnome, they just
displayed an error along the lines of something went wrong, with a logout
button). However, I then got some kind of crash/lockup when I executed eg.
dmesg in an xterm (mouse pointer still visible/movable, but otherwise, nothing
changed, and restarting X iirc just got me a black screen with mouse pointer).
I could improve that by adding
append=radeon.agpmode=-1
to the yaboot config of the kernel I'm booting, which disables AGP mode, but so
far seems to result in a stable system (I have the feeling that it feels slower
on certain UI updates though, but I'm not sure about his). So far, I've found
some bug reports [1,2,3] which might be related to these issues, but haven't
tried anything further. 

Still don't have working suspend to disk/ram though, but that could actually be
related to the graphics issues and/or my workaround.

Kind regards
Manfred

[1] https://bugs.debian.org/762047
[2] https://bugs.debian.org/782066
[3] https://bugs.debian.org/683796


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

Kernel: Linux 3.16.0-4-powerpc
Locale: LANG=de_CH.utf8, LC_CTYPE=de_CH.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)


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



Bug#771880: ITA: gmp-ecm -- factor integers using the Elliptic Curve Method

2015-06-06 Thread Jerome BENOIT
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello There,

I have just deposited at Alioth my ITA version, up on the historical material:

http://anonscm.debian.org/cgit/debian-science/packages/gmp-ecm.git


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

iQEcBAEBAgAGBQJVculcAAoJEIC/w4IMSybj3E4IAIH8gCKyrVuLFoAElWa9u4tv
/4vpN/FyvILbdkWc7q6zY3qmx//C2MGLrzBWznidVjMP7/diiZBa6dE7brN233bi
rrD0ZEJT+1bnUGmejMParj/yVI0SxQL9Vrf8asVPO86nyss9aZOa2QDMKG1RIImn
H5EQgi2uloz1MUZ6urqlrwtsnmLKAjfWi0lNsgdAhzUMqP9yEJULpZ4QTrIxwz5L
zUJQKTUUWC6guThzQDh+yKWmZj0Ycbf8AP0AE0qtabkk5Sh3mxMHvINZhuHaT9tM
DDBdIFsCLiz4IzBLRtEzibZr4TgFAFJhufPcRNE97p6UW+WomuHlHk8+ljl3r0w=
=0SmO
-END PGP SIGNATURE-


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



Bug#786438: libmp3lame0: general protection error in libmp3lame.so.0.0.0

2015-06-06 Thread Bernhard Übelacker
Hello Fabian,
after some more searching and testing here is my opinion on this issue:


- OCaml versions 4.01 (used in Jessie) and before are not doing stack
  alignment on 16 byte boundaries [1].

- GCC does 16 byte stack alignment (at least when using SSE instructions)
  at compile time.

- Now when calling libmp3lame0 from lame executable (gcc) this works just fine.
  But calling from liquidsoap (ocaml) we end up calling libmp3lame0 with a 
unaligned
  stack therefore getting the SIGSEGV on the movaps %xmm0,0x20(%esp).
  (See the second stack and the address of vec_xrpow_max in [2].)


But until now I could not fully proove my theory because:
- OCaml version 4.02 is just in experimental. Using this version would need to
  compile also all the packages depending on ocaml.
- Just using this patch in [1] is also not binary compatible with the packages
  depending on ocaml, therefore needing them all to recompile too.

For this reason chances for such a change to OCaml to enter Jessie are low?


One thing did avoid the crash, that was adding __attribute__((aligned(0x20)))
to the vecfloat_union used inside libmp3lame0 [3].
Requesting an alignment of 0x10 seems without effect.
(Probably because GCC does this already and is therefore removed.)


Options we have, if above could be proven right:
- change libmp3lame0 [3] (at least for stable), even when it is not guilty
- test rebuilding OCaml and all dependents with the patch in [1]
- wait if problem vanishes when OCaml 4.02 enters unstable/testing.
- get someone from debian-ocaml-maint involved.


[1] http://caml.inria.fr/mantis/view.php?id=6038#c11630
[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786438#22
[3] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786438#87


Kind regards,
Bernhard


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



Bug#787932: policykit-1: CVE-2015-3218: crash authentication_agent_new with invalid object path in RegisterAuthenticationAgent

2015-06-06 Thread Salvatore Bonaccorso
Source: policykit-1
Version: 0.105-3
Severity: normal
Tags: security upstream patch

Hi,

the following vulnerability was published for policykit-1.

CVE-2015-3218[0]:
crash authentication_agent_new with invalid object path in 
RegisterAuthenticationAgent

If you fix the vulnerability please also make sure to include the
CVE (Common Vulnerabilities  Exposures) id in your changelog entry.

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2015-3218
[1] 
http://cgit.freedesktop.org/polkit/commit/?id=48e646918efb2bf0b3b505747655726d7869f31c

Regards,
Salvatore


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



Bug#787916: cal3d: please make the build reproducible

2015-06-06 Thread Maria Valentina Marin
Source: cal3d
Version: 0.11.0-4.2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps

Hi,

While working on the “reproducible builds” effort [1], we have noticed
that cal3d could not be built reproducibly.

The attached patch removes $datetime from the file api_footer.html. Once
applied cal3d can be built reproducibly in our current experimental
framework.

Please also consider forwarding this patch upstream.

Thanks!
akira

 [1]: https://wiki.debian.org/ReproducibleBuilds
diff -u cal3d-0.11.0/debian/changelog cal3d-0.11.0/debian/changelog
--- cal3d-0.11.0/debian/changelog
+++ cal3d-0.11.0/debian/changelog
@@ -1,3 +1,11 @@
+cal3d (0.11.0-4.3) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Removed $datetime from the file api_footer.html to make package
+reproducible
+
+ -- akira marival...@gmail.com  Sat, 06 Jun 2015 11:04:21 +0200
+
 cal3d (0.11.0-4.2) unstable; urgency=medium
 
   * Non-maintainer upload.
only in patch2:
unchanged:
--- cal3d-0.11.0.orig/docs/api_footer.html
+++ cal3d-0.11.0/docs/api_footer.html
@@ -1,7 +1,7 @@
   hr
   center
 small
-  Generated at $datetime by
+  Generated by
   a href=http://gna.org/projects/cal3d/;The Cal3D Team/a
   with
   a href=http://www.doxygen.org/index.html;


Bug#746226: RM: libxbase -- xbase compatible C++ class library

2015-06-06 Thread Andreas Beckmann
Control: tag -1 - moreinfo

On Tue, 23 Sep 2014 07:04:01 -0400 Scott Kitterman
deb...@kitterman.com wrote:
 There is still one package that removing libxbase would break:
 
 Checking reverse dependencies...
 # Broken Depends:
 vdkbuilder2: libvdkbuilder2c2 [amd64 armel armhf i386 kfreebsd-amd64 kfreebsd-

 # Broken Build-Depends:
 vdkbuilder2: libxbase2.0-dev
 
 Please drop the moreinfo tag once this is resolved.

vdkbuilder2 already FTBFS (#751700) since its B-D: libvdkxdb2-dev was
removed from the archive, removing libxbase2.0-dev won't make it worse.


Andreas


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



Bug#787920: firebird3.0-utils: fails to upgrade from 'sid' - trying to overwrite /usr/share/man/man1/nbackup.1.gz

2015-06-06 Thread Andreas Beckmann
Package: firebird3.0-utils
Version: 3.0.0~svn+61729.ds4-2
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'sid' to 'experimental'.
It installed fine in 'sid', then the upgrade to 'experimental' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

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

  Selecting previously unselected package firebird3.0-utils.
  Preparing to unpack .../firebird3.0-utils_3.0.0~svn+61729.ds4-2_amd64.deb ...
  Unpacking firebird3.0-utils (3.0.0~svn+61729.ds4-2) ...
  dpkg: error processing archive 
/var/cache/apt/archives/firebird3.0-utils_3.0.0~svn+61729.ds4-2_amd64.deb 
(--unpack):
   trying to overwrite '/usr/share/man/man1/nbackup.1.gz', which is also in 
package firebird2.5-server-common 2.5.4.26856.ds4-1
  dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/firebird3.0-utils_3.0.0~svn+61729.ds4-2_amd64.deb


cheers,

Andreas


firebird2.5-server-common=2.5.4.26856.ds4-1_firebird3.0-utils=3.0.0~svn+61729.ds4-2.log.gz
Description: application/gzip


Bug#787922: RM: python-unac -- RoQA; unmaintained, existing functionality in Python

2015-06-06 Thread Luca Falavigna
Package: ftp.debian.org
Severity: normal

Please remove python-unac from unstable.

It has been orphaned almost three years ago, first (and last) maintainer upload
is dated 2007, and its functionality can be replicated using Python standard
library (see #442392).


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



Bug#666826: Will request removal of mod-auth-mysql soon

2015-06-06 Thread Stefan Fritsch
This module has been broken for  2 years. A replacement exists in the 
form of mod_auth[nz]_dbd in the apache2 package. We will request its 
removal very soon now.


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



Bug#787923: RM: apache2 -- NBS; ROM; Remove obsolete transitional packages

2015-06-06 Thread Stefan Fritsch
Package: ftp.debian.org
Severity: normal

cruft-report has:
* source package apache2 version 2.4.12-2 no longer builds
  binary package(s): apache2-mpm-event apache2-mpm-itk apache2-mpm-prefork 
apache2-mpm-worker apache2-suexec apache2.2-bin apache2.2-common 
libapache2-mod-macro libapache2-mod-proxy-html
  on 
amd64,arm64,armel,armhf,hurd-i386,i386,kfreebsd-amd64,kfreebsd-i386,mips,mipsel,powerpc,ppc64el,s390x,sparc
  - suggested command:
dak rm -m [auto-cruft] NBS (no longer built by apache2) -s unstable -a 
amd64,arm64,armel,armhf,hurd-i386,i386,kfreebsd-amd64,kfreebsd-i386,mips,mipsel,powerpc,ppc64el,s390x,sparc
 -p -R -b apache2-mpm-event apache2-mpm-itk apache2-mpm-prefork 
apache2-mpm-worker apache2-suexec apache2.2-bin apache2.2-common 
libapache2-mod-macro libapache2-mod-proxy-html
  - broken Depends:
ikiwiki-hosting: ikiwiki-hosting-web
mod-auth-mysql: libapache2-mod-auth-mysql [amd64 armel armhf hurd-i386 i386 
kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390x sparc]


The report about ikiwiki-hosting: ikiwiki-hosting-web is a false positive 
because the depended-on package (apache2-suexec) is now virtual.

mod-auth-mysql isn't part of stable, hasn't seen a maintainer upload for 5 
years, has been broken for 2 years, and has a replacement included in apache2. 
Therefore we will request its removal soon, but I wouldn't delay the 
cruft-removal for that.


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



Bug#787925: RM: python-uniconvertor -- RoQA; unmaintained, RC buggy

2015-06-06 Thread Luca Falavigna
Package: ftp.debian.org
Severity: normal

Please remove python-uniconvertor from unstable.

It's been orphaned since 2011, and despite somebody showed interest in
maintaining it, no actions have been taken.
Moreover, it's RC buggy (#699301), and fixing this bug is mandatory due to
lintian autorejects.


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



Bug#787914: nano: new multi-edit detection crashes (SIGSEGV) nano when I say no

2015-06-06 Thread Paul Wise
Package: nano
Version: 2.4.1-1
Severity: normal
Usertags: crash

When I open a file foo in nano and then open it in another terminal, I
get a prompt saying it is already being edit, so I press no or Ctrl+C
for cancel but nano then crashes with SIGSEGV.

Looks like this feature needs some work :)

File foo is being edited (by pabs with nano 2.4.1, PID 7889); continue? 

 
Program received signal SIGSEGV, Segmentation fault.
0x0041800a in main (argc=2, argv=0x7fffda48) at 
../../src/nano.c:2780
2780../../src/nano.c: No such file or directory.
#0  0x0041800a in main (argc=2, argv=0x7fffda48) at 
../../src/nano.c:2780

Thread 1 (process 7969):
#0  0x0041800a in main (argc=2, argv=0x7fffda48) at 
../../src/nano.c:2780
optchr = -1
startline = 0
startcol = 0
fill_used = false
old_multibuffer = false
long_options = {{name = 0x431754 help, has_arg = 0, flag = 0x0, val = 
104}, {name = 0x431759 boldtext, has_arg = 0, flag = 0x0, val = 68}, {name = 
0x431762 multibuffer, has_arg = 0, flag = 0x0, val = 70}, {name = 0x43176e 
ignorercfiles, has_arg = 0, flag = 0x0, val = 73}, {name = 0x43177c 
rebindkeypad, has_arg = 0, flag = 0x0, val = 75}, {name = 0x431789 
nonewlines, has_arg = 0, flag = 0x0, val = 76}, {name = 0x431794 morespace, 
has_arg = 0, flag = 0x0, val = 79}, {name = 0x43179e quotestr, has_arg = 1, 
flag = 0x0, val = 81}, {name = 0x4317a7 restricted, has_arg = 0, flag = 0x0, 
val = 82}, {name = 0x4317b2 tabsize, has_arg = 1, flag = 0x0, val = 84}, 
{name = 0x4317ba version, has_arg = 0, flag = 0x0, val = 86}, {name = 
0x4317c2 syntax, has_arg = 1, flag = 0x0, val = 89}, {name = 0x4317c9 
const, has_arg = 0, flag = 0x0, val = 99}, {name = 0x4317cf rebinddelete, 
has_arg = 0, flag = 0x0, val = 100}, {name = 0x4317dc nofollow, has_arg = 0, 
flag = 0x0, val = 108}, {name = 0x4317e5 mouse, has_arg = 0, flag = 0x0, val 
= 109}, {name = 0x4317eb noread, has_arg = 0, flag = 0x0, val = 110}, {name = 
0x4317f2 operatingdir, has_arg = 1, flag = 0x0, val = 111}, {name = 0x4317ff 
preserve, has_arg = 0, flag = 0x0, val = 112}, {name = 0x431808 quiet, 
has_arg = 0, flag = 0x0, val = 113}, {name = 0x43180e fill, has_arg = 1, flag 
= 0x0, val = 114}, {name = 0x431813 speller, has_arg = 1, flag = 0x0, val = 
115}, {name = 0x43181b tempfile, has_arg = 0, flag = 0x0, val = 116}, {name = 
0x431824 view, has_arg = 0, flag = 0x0, val = 118}, {name = 0x431829 
nowrap, has_arg = 0, flag = 0x0, val = 119}, {name = 0x431830 nohelp, 
has_arg = 0, flag = 0x0, val = 120}, {name = 0x431837 suspend, has_arg = 0, 
flag = 0x0, val = 122}, {name = 0x43183f smarthome, has_arg = 0, flag = 0x0, 
val = 65}, {name = 0x431849 backup, has_arg = 0, flag = 0x0, val = 66}, {name 
= 0x431850 backupdir, has_arg = 1, flag = 0x0, val = 67}, {name = 0x43185a 
tabstospaces, has_arg = 0, flag = 0x0, val = 69}, {name = 0x431867 locking, 
has_arg = 0, flag = 0x0, val = 71}, {name = 0x43186f historylog, has_arg = 0, 
flag = 0x0, val = 72}, {name = 0x43187a noconvert, has_arg = 0, flag = 0x0, 
val = 78}, {name = 0x431884 poslog, has_arg = 0, flag = 0x0, val = 80}, {name 
= 0x43188b smooth, has_arg = 0, flag = 0x0, val = 83}, {name = 0x431892 
quickblank, has_arg = 0, flag = 0x0, val = 85}, {name = 0x43189d undo, 
has_arg = 0, flag = 0x0, val = 117}, {name = 0x4318a2 wordbounds, has_arg = 
0, flag = 0x0, val = 87}, {name = 0x4318ad autoindent, has_arg = 0, flag = 
0x0, val = 105}, {name = 0x4318b8 cut, has_arg = 0, flag = 0x0, val = 107}, 
{name = 0x4318bc softwrap, has_arg = 0, flag = 0x0, val = 36}, {name = 0x0, 
has_arg = 0, flag = 0x0, val = 0}}

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (900, 'testing'), (860, 'testing-proposed-updates'), (850, 
'buildd-testing-proposed-updates'), (800, 'unstable'), (790, 
'buildd-unstable'), (700, 'experimental'), (690, 'buildd-experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages nano depends on:
ii  libc6 2.19-18
ii  libncursesw5  5.9+20150516-2
ii  libtinfo5 5.9+20150516-2
ii  zlib1g1:1.2.8.dfsg-2+b1

nano recommends no packages.

Versions of packages nano suggests:
ii  spell  1.0-24

-- no debconf information

-- 
bye,
pabs

https://wiki.debian.org/PaulWise



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


Bug#787918: dime: please make the build reproducible

2015-06-06 Thread Maria Valentina Marin
Source: dime
Version: 0.20111205-2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps

Hi,

While working on the “reproducible builds” effort [1], we have noticed
that dime could not be built reproducibly.

The attached patch removes $datetime from the file footer.html. Once
applied dime can be built reproducibly in our current experimental
framework.

Please also consider forwarding this patch upstream.

Thanks!
akira

 [1]: https://wiki.debian.org/ReproducibleBuilds
Description: Removed variable $datetime from file footer.html in order to make the package reproducible

--- dime-0.20111205.orig/docs/doxygen/footer.html
+++ dime-0.20111205/docs/doxygen/footer.html
@@ -1,6 +1,6 @@
 hr noshade
 p align=rightCopyright copy by a href=http://www.kongsberg.com/kogt;Kongsberg Oil  Gas Technologies/a. All rights reserved./p
 address style=align: right;small
-Generated on $datetime for $projectname by a href=http://www.doxygen.org/;Doxygen/a $doxygenversion./small/address
+Generated for $projectname by a href=http://www.doxygen.org/;Doxygen/a $doxygenversion./small/address
 /body
 /html


Bug#787919: zynaddsubfx-dssi: ship file in /usr/lib64

2015-06-06 Thread Bill Allombert
Package: zynaddsubfx-dssi
Version: 2.4.3-4
Severity: serious

Hello Debian Multimedia Maintainers,

on amd64, zynaddsubfx-dssi include a file in /usr/lib64
/usr/lib64/dssi/libzynaddsubfx_dssi.so

Packages must not use /usr/lib64, but either /usr/lib or the correct
multiarch path.

Cheers,
-- 
Bill. ballo...@debian.org

Imagine a large red swirl here. 


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



Bug#787924: node-crc: test failure Error: Use CoffeeScript.register()

2015-06-06 Thread Jérémy Lal
Package: node-crc
Version: 3.0.0-2
Severity: important

Hello,

while rebuilding node-crc in a clean sid sbuild chroot, this error happens:

dh build
   dh_testdir
   dh_auto_configure
   debian/rules override_dh_auto_build
make[1]: Entering directory '/«PKGBUILDDIR»'
if [ ! -d lib.org ]; then mv lib lib.orig; fi
coffee --bare --output ./lib --compile ./src/*.coffee
make[1]: Leaving directory '/«PKGBUILDDIR»'
   debian/rules override_dh_auto_test
make[1]: Entering directory '/«PKGBUILDDIR»'
mocha -C test/*.spec.coffee

/usr/lib/coffee-script/lib/coffee-script/coffee-script.js:213
  throw new Error(Use CoffeeScript.register() or require the coffee-s
^
Error: Use CoffeeScript.register() or require the coffee-script/register module 
to require .coffee.md files.
  at Object.base.(anonymous function) [as .coffee] 
(/usr/lib/coffee-script/lib/coffee-script/coffee-script.js:213:17)
  at Module.load (module.js:356:32)
  at Function.Module._load (module.js:312:12)
  at Module.require (module.js:364:17)
  at require (module.js:380:17)
  at /usr/lib/nodejs/mocha/lib/mocha.js:172:27
  at Array.forEach (native)
  at Mocha.loadFiles (/usr/lib/nodejs/mocha/lib/mocha.js:169:14)
  at Mocha.run (/usr/lib/nodejs/mocha/lib/mocha.js:356:31)
  at Object.anonymous (/usr/lib/nodejs/mocha/bin/_mocha:366:16)
  at Module._compile (module.js:456:26)
  at Object.Module._extensions..js (module.js:474:10)
  at Module.load (module.js:356:32)
  at Function.Module._load (module.js:312:12)
  at Function.Module.runMain (module.js:497:10)
  at startup (node.js:119:16)
  at node.js:906:3

make[1]: *** [override_dh_auto_test] Error 8
debian/rules:19: recipe for target 'override_dh_auto_test' failed

Is mocha the problem ? node-crc ? coffeescript ?

Jérémy

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages node-crc depends on:
ii  nodejs  0.10.38~dfsg-1

node-crc recommends no packages.

node-crc 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#787926: debian-maintainers: Annual ping for Sascha Steinbiss

2015-06-06 Thread Sascha Steinbiss
Package: debian-maintainers
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hi all,

this is my annual ping and I would like to stay in the keyring.

Cheers
Sascha

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJVct8KAAoJEFVWo04Eo2EL/CwQAIp3okqdSJbDG7co3ngyexO8
5/popydtLMafc6MIHCwDkzTAH9a57aebpea5S+YJ76sVfKmZaZeGoGMymlyx7MrV
iaYYXqoP9oVW8qQ3QKc7flym0DVaM6E4/GnUWpFCLgV0LBXLTTrwzdFaCDDoN3/6
sWR5U3iYAYmoU7JwUXIQHZxWw7N+Bz6wKW5tu5+r1XOBvDakhcu4NJP2AQsMieV1
4sAhRXCgysWeVkd5N6m5M8WoNYOrpd3aB7BoGVqRexUwS6Xw5cypF6Te7oiPlkK9
zdYnMYJh/VikU4Ny6WGW+BK+ENhXqEc3x2DtLZG+gHvlq8EpZqtrZjhMxxW68Qgc
L4+2fnZayD35yC2lk/Ws35XRH0QvcyDkF2wnyVoMUA3YcCd2cyG7LfOfSdJN0LQV
lj2QuT2hghWSFHNnrP3TRkZJ0ALavz3/0kL6gSNL7hxTc+boJv1VHVXAPEDIYNvZ
OGQdVwAFWMyF2ZGIY7Krq8MiL8BWnXL/NHEaId5xGPj0WeVcWISAkyK1JdbACbSW
yCnMi+QLsZdS+6hoGQSZRIZ+pfurCUjg+ZYTuNW1vrd1uqP51iNqfayzrmYxJxJe
dXYTj1DTQ8nKSPh5B20FuYr+cozj03P1oFCDhC7XygNDm9UK1saOnSFQRaDQgZSy
KkzxHbeUb2uOZu16JP9u
=U3AP
-END PGP SIGNATURE-


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



Bug#787927: mutt cannot extract attachments from iPGMail senders

2015-06-06 Thread Nomen Nescio
Package: mutt
Version: 1.5.23-3
Severity: normal

Dear Maintainer,

When a mutt user receives a message from an iPGMail user, and the
message has attachments, the attachments are not extractable.
After saving the attachment that came from an iPGMail user, the
following command:

  $ gpg image.jpg.pgp

results in:

  gpg: CRC error; 123456 - ABCDEF
  gpg: Problem reading source (534223 bytes remaining)
  gpg: handle plaintext failed: file read error
  gpg: mdc_packet with invalid encoding
  gpg: decryption failed: invalid packet
  gpg: invalid armor: line longer than 2 characters

It does not matter what kind of file is attached.  All file
attachments that are created using iPGMail fail to decrypt in the
above manner.  There is still output, but the output is partially
corrupt.  This is evident if the attachment is an image, so a small
part of the image is correct then the rest is junk.

It's likely a problem with iPGMail, but I'm filing this bug because I
may be wrong, or perhaps mutt could include a feature enabling
recipients to salvage these corrupt attachments.


-- Package-specific info:
Mutt 1.5.23 (2014-03-12)
Copyright (C) 1996-2009 Michael R. Elkins and others.
Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.
Mutt is free software, and you are welcome to redistribute it
under certain conditions; type `mutt -vv' for details.

System: Linux 3.16.0-4-amd64 (x86_64)
ncurses: ncurses 5.9.20140913 (compiled with 5.9)
libidn: 1.29 (compiled with 1.29)
hcache backend: tokyocabinet 1.4.48

Compiler:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.2-4' 
--with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs 
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr 
--program-suffix=-4.9 --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls 
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify 
--enable-plugin --with-system-zlib --disable-browser-plugin 
--enable-java-awt=gtk --enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home 
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64 
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64 
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar 
--enable-objc-gc --enable-multiarch --with-arch-32=i586 --with-abi=m64 
 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic 
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu 
--target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.2 (Debian 4.9.2-4) 

Configure options: '--prefix=/usr' '--sysconfdir=/etc' 
'--mandir=/usr/share/man' '--with-docdir=/usr/share/doc' 
'--with-mailpath=/var/mail' '--disable-dependency-tracking' 
'--enable-compressed' '--enable-debug' '--enable-fcntl' '--enable-hcache' 
'--enable-gpgme' '--enable-imap' '--enable-smtp' '--enable-pop' '--with-curses' 
'--with-gnutls' '--with-gss' '--with-idn' '--with-mixmaster' '--with-sasl' 
'--without-gdbm' '--without-bdb' '--without-qdbm' '--build' 'x86_64-linux-gnu' 
'build_alias=x86_64-linux-gnu' 'CFLAGS=-g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -Wall' 'LDFLAGS=-Wl,-z,relro' 
'CPPFLAGS=-D_FORTIFY_SOURCE=2 -I/usr/include/qdbm'

Compilation CFLAGS: -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -Wall

Compile options:
-DOMAIN
+DEBUG
-HOMESPOOL  +USE_SETGID  +USE_DOTLOCK  +DL_STANDALONE  +USE_FCNTL  -USE_FLOCK   
+USE_POP  +USE_IMAP  +USE_SMTP  
-USE_SSL_OPENSSL  +USE_SSL_GNUTLS  +USE_SASL  +USE_GSS  +HAVE_GETADDRINFO  
+HAVE_REGCOMP  -USE_GNU_REGEX  
+HAVE_COLOR  +HAVE_START_COLOR  +HAVE_TYPEAHEAD  +HAVE_BKGDSET  
+HAVE_CURS_SET  +HAVE_META  +HAVE_RESIZETERM  
+CRYPT_BACKEND_CLASSIC_PGP  +CRYPT_BACKEND_CLASSIC_SMIME  +CRYPT_BACKEND_GPGME  
-EXACT_ADDRESS  -SUN_ATTACHMENT  
+ENABLE_NLS  -LOCALES_HACK  +COMPRESSED  +HAVE_WC_FUNCS  +HAVE_LANGINFO_CODESET 
 +HAVE_LANGINFO_YESEXPR  
+HAVE_ICONV  -ICONV_NONTRANS  +HAVE_LIBIDN  +HAVE_GETSID  +USE_HCACHE  
-ISPELL
SENDMAIL=/usr/sbin/sendmail
MAILPATH=/var/mail
PKGDATADIR=/usr/share/mutt
SYSCONFDIR=/etc
EXECSHELL=/bin/sh
MIXMASTER=mixmaster
To contact the developers, please mail to mutt-...@mutt.org.
To report a bug, please visit http://bugs.mutt.org/.

misc/am-maintainer-mode.patch
features/ifdef.patch
features/xtitles.patch
features/trash-folder.patch
features/purge-message.patch
features/imap_fast_trash.patch
features/sensible_browser_position.patch
features-old/patch-1.5.4.vk.pgp_verbose_mime.patch
features/compressed-folders.patch
features/compressed-folders.debian.patch
debian-specific/Muttrc.patch

Bug#787915: lxrandr: 'lost' lxpanel after detaching 2nd monitor from laptop

2015-06-06 Thread jmullee
Package: lxrandr
Version: 0.3.0-1
Severity: wishlist

Dear Maintainer,

I attached a 2nd monitor to my laptop,
and used lxrandr to set lxpanel to stick to the
laptop screen (screen '2', because it was on the right?).

After removing the monitor, and rebooting, the panel
was absent from the laptop screen.

Reattaching the monitor, I was able to reset the lxpanel
to 'both' monitors, then after detaching the monitor
again, the lxpanel was, as wanted, shown on the laptop
screen.

I suppose lxpanel might try and default this setting
appropriately, if detecting only one screen, you could ensure
lxpanel was visible on at least one remaining screen?

j



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

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lxrandr depends on:
ii  libatk1.0-0  2.16.0-2
ii  libc62.19-18
ii  libcairo21.14.2-2
ii  libfontconfig1   2.11.0-6.3
ii  libfreetype6 2.5.2-4
ii  libgdk-pixbuf2.0-0   2.31.4-2
ii  libglib2.0-0 2.44.1-1
ii  libgtk2.0-0  2.24.25-3
ii  libpango-1.0-0   1.36.8-3
ii  libpangocairo-1.0-0  1.36.8-3
ii  libpangoft2-1.0-01.36.8-3

lxrandr recommends no packages.

lxrandr 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#787921: gambas3-gb-desktop-x11: fails to upgrade from 'sid' - trying to overwrite /usr/lib/gambas3/gb.desktop.gambas

2015-06-06 Thread Andreas Beckmann
Package: gambas3-gb-desktop-x11
Version: 3.6.2-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'sid' to 'experimental'.
It installed fine in 'sid', then the upgrade to 'experimental' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

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

  Selecting previously unselected package gambas3-gb-desktop-x11.
  Preparing to unpack .../gambas3-gb-desktop-x11_3.6.2-1_amd64.deb ...
  Unpacking gambas3-gb-desktop-x11 (3.6.2-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/gambas3-gb-desktop-x11_3.6.2-1_amd64.deb (--unpack):
   trying to overwrite '/usr/lib/gambas3/gb.desktop.gambas', which is also in 
package gambas3-gb-desktop 3.5.4-2+b1


cheers,

Andreas


gambas3-gb-desktop=3.5.4-2+b1_gambas3-gb-desktop-x11=3.6.2-1.log.gz
Description: application/gzip


Bug#787821: libhtml-parser-perl: encode_entities() convert chars to Atilde; instead of their proper entity

2015-06-06 Thread Mathieu ROY
Hi Gregor,

Le vendredi 5 juin 2015, 17:21:18 gregor herrmann a écrit :
 
 In this case I'd probably try with use utf8::all; or told open()
 
 about the encoding:
$ cat test.pl
  
  #!/usr/bin/perl
  use utf8;
  use HTML::Entities;
  
  open(INPUT,  testdata);
 
 open(my $fh,':encoding(utf8)', 'testdata');
 
 (Untested.)

Tested, it works.

But then again, this can be done  this way only if we are 100% positive that 
input is always UTF-8 (which is 
not the case of my script - so I'm back to testing the input and it's still 
even easier to decode it).

I guess then apart from the missing --utf8 from pod2man there is no bug here 
and this report can be 
closed. 

Still, even though, as pointed out, I could have found the answer by checking 
general perl doc about 
encoding, maybe just a line in the HTML::Entities man about it could be useful.
Nowadays, you can expect input to be very often UTF-8.


-- 
http://yeupou.wordpress.com/


Bug#787930: [checks/po-debconf] uses TEMPDIR instead of TMPDIR

2015-06-06 Thread Jakub Wilk

Package: lintian
Version: 2.5.31
Tags: patch

checks/po-debconf.pm does:

   my $temp_obj = File::Temp-newdir('lintian-po-debconf-XX',
   DIR = $ENV{'TEMPDIR'}//'/tmp');

But POSIX-compliant variable for temporary directory is TMPDIR, not 
TEMPDIR.


The attached (untested) patch should fix it.

--
Jakub Wilk
diff --git a/checks/po-debconf.pm b/checks/po-debconf.pm
--- a/checks/po-debconf.pm
+++ b/checks/po-debconf.pm
@@ -148,7 +148,7 @@
 
 if ($missing_files == 0) {
 my $temp_obj = File::Temp-newdir('lintian-po-debconf-XX',
-DIR = $ENV{'TEMPDIR'}//'/tmp');
+TMPDIR = 1);
 my $abs_tempdir = realpath($temp_obj-dirname)
   or croak('Cannot resolve ' . $temp_obj-dirname . : $!);
 # We need an extra level of dirs, as intltool (in)directly


Bug#787781: [pkg-gnupg-maint] Bug#787781: gnupg-agent: broken pipe error when a program using agent is invoked by stdbuf -oL

2015-06-06 Thread nfb
 Yes it's a good idea... i'd also try to abstract the issue even more,
 so if i manage to use gpg-agent in a way that doesn't involve pass,
 (maybe asimmetrically signing/encrypting some files)

*decrypting

 and the error
 shows up again when invoking via stdbuf, than it'd be likely and
 strictly an issue on gpg-agent and not pass... (shouldn't it?)
 
 Updates will follow...

Well, using:

stdbuf -oL gpg --use-agent --sign file

works without errors retrieving the cached password from gpg-agent.
I'd say the problem is not directly gpg-agent then...

Anyways executing the command above, i noticed it asked me the
passphrase via pinentry curses althogh it was already cached, because
i used it few seconds before with pass, and i used it after just to be
sure (obviously i have signed the test file with the same key pass
uses to encrypt its password store).
Now i don't know gpg-agent internals, but shouldn't it have used the
already cached passphrase? Also the two pinentry dialog showed when
using pass and when using gpg are slightly different in text and size.
But maybe this is OT.

Thanks.


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



Bug#787689: [armhf] Internal compiler error while building qtbase (qt5)

2015-06-06 Thread Lisandro Damián Nicanor Pérez Meyer
Hi GCC maintainers! Could you check Sune's poposed patches?

I'm sorry for my insistence, but we really need to get this fixed to let the 
transition go and do it before gcc5 becomes the default compiler.

Thanks!

-- 
Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Bug#774415: sbuild: please add the srebuild sbuild wrapper to reproduce builds

2015-06-06 Thread HW42
Hi,

I just noted that the current implementation of srebuild [0] calls
apt-get install with --force-yes which (as far as I remember) ignores
signature verification errors.

HW42

[0]:
https://anonscm.debian.org/cgit/reproducible/sbuild.git/tree/bin/srebuild-hook?h=pu/reproducible_builds#n110



signature.asc
Description: OpenPGP digital signature


Bug#787891: gem2deb: [PATCH] please make generation of gemspec file from metadata.yml reproducible

2015-06-06 Thread Juan Picca
Bug #779631 fixes this problem too, but in a better manner for me.


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



Bug#787943: beneath-a-steel-sky: add support for other languages

2015-06-06 Thread Alexandre Detiste
Package: beneath-a-steel-sky
Version: 0.0372-5
Severity: normal
Tags: patch

Hi,

The datafiles already include french/german/italian/spanish texts,
but these need to be picked manualy on the command line or through scummvm
launcher.

Here is a patch that enable language autodetection.

Alexandre Detiste


Same bug:
https://bugs.launchpad.net/ubuntu/+source/scummvm/+bug/393947



-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (501, 'testing'), (450, 'unstable'), (400, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.19.0-trunk-amd64 (SMP w/6 CPU cores)
Locale: LANG=fr_BE.UTF-8, LC_CTYPE=fr_BE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages beneath-a-steel-sky depends on:
ii  scummvm  1.7.0+dfsg-2

beneath-a-steel-sky recommends no packages.

beneath-a-steel-sky suggests no packages.

-- no debconf information
diff -N -u -r beneath-a-steel-sky-0.0372_dget/debian/beneath-a-steel-sky.desktop beneath-a-steel-sky-0.0372/debian/beneath-a-steel-sky.desktop
--- beneath-a-steel-sky-0.0372_dget/debian/beneath-a-steel-sky.desktop	2013-02-17 04:10:23.0 +0100
+++ beneath-a-steel-sky-0.0372/debian/beneath-a-steel-sky.desktop	2015-06-06 16:35:02.533132963 +0200
@@ -5,7 +5,7 @@
 Comment=A science-fiction adventure game set in a bleak post-apocalyptic vision of the future
 Comment[de]= Ein Science-Fiction-Abenteuerspiel angesiedelt in einer düsteren, postapokalyptischen Vision der Zukunft
 Type=Application
-Exec=/usr/games/scummvm -p /usr/share/scummvm/beneath-a-steel-sky sky
+Exec=/usr/games/sky
 Icon=beneath-a-steel-sky
 Categories=AdventureGame;Game;RolePlaying;
 Keywords=adventure;game;roleplaying;cyberpunk;
diff -N -u -r beneath-a-steel-sky-0.0372_dget/debian/beneath-a-steel-sky.lintian-overrides beneath-a-steel-sky-0.0372/debian/beneath-a-steel-sky.lintian-overrides
--- beneath-a-steel-sky-0.0372_dget/debian/beneath-a-steel-sky.lintian-overrides	2013-02-17 04:10:23.0 +0100
+++ beneath-a-steel-sky-0.0372/debian/beneath-a-steel-sky.lintian-overrides	1970-01-01 01:00:00.0 +0100
@@ -1,3 +0,0 @@
-# BASS is a content package and is launched by ScummVM
-beneath-a-steel-sky: menu-command-not-in-package usr/share/menu/beneath-a-steel-sky:6 usr/games/scummvm
-beneath-a-steel-sky: desktop-command-not-in-package usr/share/applications/beneath-a-steel-sky.desktop usr/games/scummvm
diff -N -u -r beneath-a-steel-sky-0.0372_dget/debian/beneath-a-steel-sky.menu beneath-a-steel-sky-0.0372/debian/beneath-a-steel-sky.menu
--- beneath-a-steel-sky-0.0372_dget/debian/beneath-a-steel-sky.menu	2013-02-17 04:10:23.0 +0100
+++ beneath-a-steel-sky-0.0372/debian/beneath-a-steel-sky.menu	2015-06-06 18:39:48.674766683 +0200
@@ -3,4 +3,4 @@
   title=Beneath A Steel Sky \
   longtitle=Beneath A Steel Sky - a science fiction adventure game \
   icon=/usr/share/pixmaps/beneath-a-steel-sky.xpm \
-  command=/usr/games/scummvm -p /usr/share/scummvm/beneath-a-steel-sky sky
+  command=/usr/games/sky
diff -N -u -r beneath-a-steel-sky-0.0372_dget/debian/po/de.po beneath-a-steel-sky-0.0372/debian/po/de.po
--- beneath-a-steel-sky-0.0372_dget/debian/po/de.po	2013-02-17 04:10:23.0 +0100
+++ beneath-a-steel-sky-0.0372/debian/po/de.po	2015-06-06 18:43:58.640283296 +0200
@@ -10,6 +10,7 @@
 PO-Revision-Date: 2013-02-14 01:10+0100\n
 Last-Translator: Markus Koschany a...@gambaru.de\n
 Language-Team: Debian Games Team\n
+Language: de\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -30,6 +31,22 @@
 msgid --versiondisplay version information and exit
 msgstr --versionzeige Informationen zur Version und beende das Programm
 
+msgid --en play the English version
+msgstr --en Spiele die englische Version
+
+msgid --de play the German version
+msgstr --de Spiele die deutsche Version
+
+msgid --fr play the French version
+msgstr --fr Spiele die französische Version
+
+msgid --it play the Italian version
+msgstr --it Spiele die italienische Version
+
+msgid --es play the Spanish version
+msgstr --es Spiele die spanische Version
+
+
 #: debian/sky:18
 msgid Beneath a Steel Sky v0.0372
 msgstr Beneath a Steel Sky v0.0372
diff -N -u -r beneath-a-steel-sky-0.0372_dget/debian/po/fr.po beneath-a-steel-sky-0.0372/debian/po/fr.po
--- beneath-a-steel-sky-0.0372_dget/debian/po/fr.po	1970-01-01 01:00:00.0 +0100
+++ beneath-a-steel-sky-0.0372/debian/po/fr.po	2015-06-06 18:36:06.105307852 +0200
@@ -0,0 +1,61 @@
+# Deutsche Übersetzung des Pakets beneath-a-steel-sky 
+# This file is put in the public domain.
+# Markus Koschany a...@gambaru.de.
+#
+msgid 
+msgstr 
+Project-Id-Version: Beneath a Steel Sky 0.0372\n
+Report-Msgid-Bugs-To: \n
+POT-Creation-Date: 2006-02-02 15:05+0200\n
+PO-Revision-Date: 2015-06-06 18:32+0200\n
+Last-Translator: Alexandre 

Bug#787944: gnome-tweak-tool: windows - titlebar - (toggle shade) does not work

2015-06-06 Thread Mark Hedges
Package: gnome-tweak-tool
Version: 3.14.2-2
Severity: normal

Dear Maintainer,

The Toggle Shade function no longer works in the window settings.

If this is a window manager bug, please forward or let me know
the correct package.

I expected the window to roll up so only the title bar was visible.

Instead of shading (rollup), the window just disappears.

It can be found again from the window processes in the panel and restored.

In the window overview, the window is invisible, although it has an outline
and the label is there.

I was not able to find the gconf files where this setting is stored, using
gconf-editor or searching files under ~/.g*.  Are gconf settings somewhere
else now?

Thanks.

Mark


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

Kernel: Linux 3.16.0-4-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gnome-tweak-tool depends on:
ii  gir1.2-gnomedesktop-3.03.14.1-1
ii  gir1.2-gtk-3.0 3.14.5-1
ii  gir1.2-notify-0.7  0.7.6-2
ii  gir1.2-soup-2.42.48.0-1
ii  gnome-shell-common 3.14.2-3
ii  gsettings-desktop-schemas  3.14.1-1
ii  mutter-common  3.14.2-1
ii  python 2.7.9-1
ii  python-gi  3.14.0-1

gnome-tweak-tool recommends no packages.

gnome-tweak-tool suggests no packages.

-- no debconf information


-- 
Mark Hedges, software engineer
Business info:  http://formdata.biz/


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



Bug#787866: autogen: after upgrade to 5.18.5 autogen no longer works

2015-06-06 Thread Andreas Metzler
On 2015-06-06 Nikos Mavrogiannopoulos n...@gnutls.org wrote:
 On Fri, 2015-06-05 at 18:19 -0700, Bruce Korb wrote:
  export AUTOGEN_TRACE=everything AUTOGEN_TRACE_OUT='/tmp/ag-log.txt'

 Log is attached.
[...]

FWIW, it also works for me on sid (both amd64 and i386).

cu Andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'


sid-amd-ag-log.txt.xz
Description: application/xz


Bug#787174: more proof

2015-06-06 Thread Joey Hess


-- 
see shy jo


Bug#787921: gambas3-gb-desktop-x11: fails to upgrade from 'sid' - trying to overwrite /usr/lib/gambas3/gb.desktop.gambas

2015-06-06 Thread Gianfranco Costamagna
control: tags -1 pending

Hi Andreas,


I pushed the changes on git branch experimental, and on DebOMatic
http://debomatic-amd64.debian.net/distribution#unstable/gambas3/3.7.1-1/buildlog

http://anonscm.debian.org/cgit/pkg-gambas/gambas3.git/commit/?h=experimental

Unfortunately piuparts there fails because of a broken symlink, don't know why, 
maybe ttf-fonts is not installed there, but I removed that symlink in the new 
release...

Please let me know if you encounter other piuparts failures,

thanks,

Gianfranco

Il Sabato 6 Giugno 2015 13:37, Andreas Beckmann a...@debian.org ha scritto:



Package: gambas3-gb-desktop-x11
Version: 3.6.2-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'sid' to 'experimental'.
It installed fine in 'sid', then the upgrade to 'experimental' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

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

  Selecting previously unselected package gambas3-gb-desktop-x11.
  Preparing to unpack .../gambas3-gb-desktop-x11_3.6.2-1_amd64.deb ...
  Unpacking gambas3-gb-desktop-x11 (3.6.2-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/gambas3-gb-desktop-x11_3.6.2-1_amd64.deb (--unpack):
   trying to overwrite '/usr/lib/gambas3/gb.desktop.gambas', which is also in 
package gambas3-gb-desktop 3.5.4-2+b1


cheers,

Andreas


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



Bug#787934: hannah: Upstream homepage domain is expired and now for sale

2015-06-06 Thread Niels Thykier
Source: hannah
Severity: normal

Hi,

It seems that the domain of the upstream homepage has expired.  This
means that the hannah package now just links to a sales site
rather than upstream.  Please:

 * update or drop the Homepage field of the hannah package, or
 * convince upstream to reacquire their domain and reinstate their
   homepage.

Thanks,
~Niels


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



Bug#787720: systemd: Missing /usr/lib/systemd/boot/efi for bootctl install

2015-06-06 Thread Martin Pitt
Hello Mathias, Michael,

Michael Biebl [2015-06-04 19:26 +0200]:
  I am not able to use bootctl install to install the recently added
  systemd bootloader:
  
  # bootctl install --path=/boot/efi
  Created /boot/efi/EFI/systemd.
  Created /boot/efi/EFI/Boot.
  Created /boot/efi/loader.
  Created /boot/efi/loader/entries.
  Failed to open /usr/lib/systemd/boot/efi: No such file or directory
  
  That directory/file is indeed missing but can be found in the upstream
  Makefile. Please make sure to include it in the Debian package.
 
 Martin, are we actually ready yet to enable efi support in systemd,
 fully? You switched it on in commit
 93fe4ec754a915c023ae341f05d29565e41a2c0e

Until 219, EFI support was auto-discovery of partitions, mounting
/sys/firmware/efi/efivars, and bootctl status. All of which is
desirable and works fine.

Admittedly I wasn't aware of the new install etc. bootctl commands
yet. I didn't test this at all, and to be honest I'm quite surprised
that people jump at this so quickly :-) There is absolutely zero
distro integration with the systemd EFI boot loader, unlike GRUB and
friends.

Mathias, does that actually work for you? (I suppose you grabbed the
files from upstream?)

 Maybe we shouldn't install the bootctl command until we have all the
 integration really done.

I'm ok with hiding it for now. bootctl status is mildly useful, but
certainly far from a must-have.

 I also think we shouldn't build with efi support in the udeb build.
 It seems pointless.

Indeed, committed that.

Thanks,

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)


signature.asc
Description: Digital signature


Bug#787938: libjpeg-turbo: please use versioned Provides in sid

2015-06-06 Thread Thorsten Glaser
Source: libjpeg-turbo
Version: 1:1.4.0-7
Severity: normal

Hi,

libjpeg62-turbo Provides libjpeg62, but does so without a
version number. Several utilities Depends libjpeg62 with
a version number. Since a while, we have versioned Provides,
which makes this actually work. Please use them.

Proof: I just hand-patched libjpeg-turbo binaries: replace
all 1:1.4.0-7 with 1:1.4.0-7+p in all control files, then
change the line in libjpeg62-turbo control to:
Provides: libjpeg62 (= 1:1.4.0-7+p)
This allows me to continue building packages on m68k where
not everything has been rebuilt against libjpeg62-turbo yet
(except those that already use libjpeg8 or libjpeg9 ofc).

Thanks in advance!

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

Kernel: Linux 4.0.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/lksh
Init: sysvinit (via /sbin/init)


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



Bug#787911: [Reportbug-maint] Bug#787911: reportbug: Read config from XDG_CONFIG_HOME/debian/reportbugrc.

2015-06-06 Thread Sandro Tosi
control: tags -1 + moreinfo

On Sat, Jun 6, 2015 at 4:54 AM, Rodolphe PELLOUX-PRAYER
rodol...@damsy.net wrote:
 Here a patch to allow use of XDG_CONFIG_HOME/debian/reportbugrc for settings.

what's the advantage? why under the 'debian' namespace?

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


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



Bug#787689: [armhf] Internal compiler error while building qtbase (qt5)

2015-06-06 Thread Lisandro Damián Nicanor Pérez Meyer
On Saturday 06 June 2015 10:23:46 Lisandro Damián Nicanor Pérez Meyer wrote:
[snip] 
 Looking at the changelog  of 4.9.2-20 it might have been already fixed. Will
 check it.

Sadly not :-/

-- 
Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Bug#787928: libdbd-sqlite3: produces only one table with no rows from a large gnuca dataset

2015-06-06 Thread GCS
Control: reassign -1 gnucash 1:2.6.4-3

On Sat, Jun 6, 2015 at 12:16 PM, Anonymous
anonym...@foto.nl1.torservers.net wrote:
 Package: libdbd-sqlite3
 Version: 0.9.0-3
 Severity: normal
 You mixed up three different projects. SQLite3 (and its libraries)
and the libdbi database drivers are quite different from GNUCash. Just
for the record, GNUCash has nothing to do with the libdbi drivers,
it's linked directly to SQLite3.

 Dear Maintainer,
 I reassign this to GNUCash itself and send a Cc to Dmitry who is the
maintainer of that project. Hope he can help you further.

 Using the gnucash export feature, an sqlite3 db file is created, but
 it contains no data.  E.g.

   $ sqlite3 jailed_data.sqlite3.gnucash .schema
   CREATE TABLE gnclock ( Hostname varchar(255), PID int );

   $ sqlite3 jailed_data.sqlite3.gnucash select * from gnclock;
   no output
 Just checked this on Jessie/amd64 and I confirm that this bug exists.
But please note that as I see 'export accounts' does only what it
says. Exports the account name, its currency and pretty much that's
all. The XML output is created but contains only these data and not
the transactions neither the balance.

Regards,
Laszlo/GCS


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



Bug#787935: seems to use a dead API

2015-06-06 Thread Joey Hess
Package: libbusiness-paypal-api-perl
Version: 0.70-1
Severity: normal

Since a week ago, the paypal api service this module uses has been
failing with 503 or 500. My guess is this means paypal has killed that
API, presumably replacing it with a new API.

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#787444: [Reproducible-builds] Bug#787444: Bug#787444: help2man: support externally-supplied --date for reproducibility

2015-06-06 Thread Holger Levsen
Hi,

On Freitag, 5. Juni 2015, Daniel Kahn Gillmor wrote:
 My vote is for SOURCE_DATE_UTC, and i agree with Brendan that we should
 take the opportunity to define this as strictly and narrowly as possible
 (i.e. end in a 'Z', none of the other offsets), so that people relying
 on it know they're getting a fixed thing, and don't have to implement
 any fancy parsing/offsetting code if they're not already using an
 ISO8601-compliant date-parsing library.

sounds good to me too!


thanks  cheers,
Holger


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


Bug#787937: lintian: false positive: E: ... missing-build-dependency-for-dh-addon aqbanking = libaqbanking34-dev

2015-06-06 Thread Micha Lenk
Package: lintian
Version: 2.5.31
Severity: important

Hi,

I just got a false positive from lintian when building kmymoney 4.6.6-1.1 after
a SONAME bump in libaqbanking. It reported the following error:

E: kmymoney source: missing-build-dependency-for-dh-addon aqbanking = 
libaqbanking34-dev

The hint to package libaqbanking34-dev is wrong, because the package
libaqbanking34-dev that used to contain the aqbanking add-on for debhelper just
got renamed to libaqbanking-dev.  As in the resulting binary package (kmymoney
4.6.6-1.1) the correct dependency on libaqbanking35-plugins is present,
the aqbanking add-on from libaqbanking-dev 5.6.1beta-1 must have been available
during build.

Regards,
Micha


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



Bug#787871: kmymoney: FTBFS due to renamed package: libaqbanking34-dev - libaqbanking-dev

2015-06-06 Thread Micha Lenk
Control: tags -1 fixed pending

Hi,

I've just uploaded the attached NMU for kmymoney 4.6.6-1.1 to DELAYED/3.

Best regards,
Micha
diff -Nru kmymoney-4.6.6/debian/changelog kmymoney-4.6.6/debian/changelog
--- kmymoney-4.6.6/debian/changelog	2014-06-24 22:29:59.0 +0200
+++ kmymoney-4.6.6/debian/changelog	2015-06-06 15:58:11.0 +0200
@@ -1,3 +1,10 @@
+kmymoney (4.6.6-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Update build-deps after soname bump in libaqbanking (Closes: #787871). 
+
+ -- Micha Lenk mi...@debian.org  Sat, 06 Jun 2015 15:54:20 +0200
+
 kmymoney (4.6.6-1) unstable; urgency=low
 
   * New upstream release
diff -Nru kmymoney-4.6.6/debian/control kmymoney-4.6.6/debian/control
--- kmymoney-4.6.6/debian/control	2014-06-24 22:29:59.0 +0200
+++ kmymoney-4.6.6/debian/control	2015-06-05 23:20:12.0 +0200
@@ -5,7 +5,7 @@
 Uploaders: Mark Purcell m...@debian.org, Fathi Boudra f...@debian.org
 Build-Depends: debhelper (= 9), cmake, pkg-kde-tools (= 0.9.0),
  kdelibs5-dev (= 4:4.4.4), kdepimlibs5-dev (= 4:4.4.4), shared-mime-info,
- libaqbanking34-dev (= 5.3.5beta-2~) | libaqbanking-dev, libgwenhywfar60-dev | libgwenhywfar-dev, 
+ libaqbanking-dev (= 5.6.1beta), libgwenhywfar60-dev | libgwenhywfar-dev, 
  libboost-graph-dev, libfinance-quote-perl, libgpgme11-dev, libalkimia-dev,
  libical-dev, libjpeg-dev, libofx-dev, libgmp-dev,
  libpng-dev, libsqlite3-dev, zlib1g-dev, pkg-config


Bug#787933: wheezy-pu: package pdf2djvu/0.7.12-2

2015-06-06 Thread Daniel Stender
Package: release.debian.org
Severity: normal
Tags: wheezy
User: release.debian@packages.debian.org
Usertags: pu

Hello Debian release,

I propose an update of pdf2djvu in Wheezy, 0.7.12-2+deb7u1.

The patch is a security fix of #784889, already applied in Sid
(closed by 0.7.21-1) and Jessie.

I've build with Sbuild against oldstable, please see the buildlog
here [2]. To prevent the execution of make distclean which fails
I've also just added an empty override for dh_auto_clean.

Please see the attached debdiff for details.

The security has been marked as no-dsa [3], therefore I would
like to upload it as proposed update.

Thanks,
Daniel Stender

[1] http://bugs.debian.org/784889

[2] 
http://www.danielstender.com/buildlogs/pdf2djvu_0.7.12-2+deb7u1_amd64-20150606-1546.build

[3] https://security-tracker.debian.org/tracker/source-package/pdf2djvu

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru pdf2djvu-0.7.12/debian/changelog pdf2djvu-0.7.12/debian/changelog
--- pdf2djvu-0.7.12/debian/changelog	2012-02-25 14:32:12.0 +0100
+++ pdf2djvu-0.7.12/debian/changelog	2015-06-06 15:38:16.0 +0200
@@ -1,3 +1,12 @@
+pdf2djvu (0.7.12-2+deb7u1) oldstable; urgency=medium
+
+  * added fix-insecure-use-of-tmp-when-executing-c44.diff, fix
+of no-dsa security issue (related bug #784889 closed by 0.7.21-1
+in Sid).
+  * deb/rules: added empty override for dh_auto_clean.
+
+ -- Daniel Stender deb...@danielstender.com  Sat, 06 Jun 2015 15:37:38 +0200
+
 pdf2djvu (0.7.12-2) unstable; urgency=low
 
   * Add missing pkg-config build-dep (Closes: #661080)
diff -Nru pdf2djvu-0.7.12/debian/patches/fix-insecure-use-of-tmp-when-executing-c44.diff pdf2djvu-0.7.12/debian/patches/fix-insecure-use-of-tmp-when-executing-c44.diff
--- pdf2djvu-0.7.12/debian/patches/fix-insecure-use-of-tmp-when-executing-c44.diff	1970-01-01 01:00:00.0 +0100
+++ pdf2djvu-0.7.12/debian/patches/fix-insecure-use-of-tmp-when-executing-c44.diff	2015-06-06 15:27:39.0 +0200
@@ -0,0 +1,20 @@
+Description: fix for security issue
+ Prevents C44 to delete didjvu output file in /tmp or $TMPDIR
+ and create a new one during IW44 layer processing,
+ CVE request: http://www.openwall.com/lists/oss-security/2015/05/09/7
+Author: Daniel Stender deb...@danielstender.com
+Origin: https://bitbucket.org/jwilk/pdf2djvu/commits/62c3c48098d6232f09ecabcf8d0176d42b714041
+Bug: https://bugs.debian.org/784889
+
+--- a/pdf2djvu.cc
 b/pdf2djvu.cc
+@@ -1537,7 +1537,8 @@
+   }
+   else if (nonwhite_background_color)
+   {
+-TemporaryFile c44_file;
++TemporaryDirectory c44_dir;
++	TemporaryFile c44_file(c44_dir, bg.djvu);
+ c44_file.close();
+ { /* Create solid-color PPM image with subsample ratio 12: */
+   TemporaryFile ppm_file;
diff -Nru pdf2djvu-0.7.12/debian/patches/series pdf2djvu-0.7.12/debian/patches/series
--- pdf2djvu-0.7.12/debian/patches/series	1970-01-01 01:00:00.0 +0100
+++ pdf2djvu-0.7.12/debian/patches/series	2015-06-06 15:22:54.0 +0200
@@ -0,0 +1 @@
+fix-insecure-use-of-tmp-when-executing-c44.diff
diff -Nru pdf2djvu-0.7.12/debian/rules pdf2djvu-0.7.12/debian/rules
--- pdf2djvu-0.7.12/debian/rules	2012-02-25 14:02:40.0 +0100
+++ pdf2djvu-0.7.12/debian/rules	2015-06-06 15:37:35.0 +0200
@@ -22,6 +22,8 @@
 clean:
 	dh clean
 
+override_dh_auto_clean:
+
 .PHONY: install
 install: install-stamp
 install-stamp: build-stamp


Bug#787720: systemd: Missing /usr/lib/systemd/boot/efi for bootctl install

2015-06-06 Thread Martin Pitt
Michael Biebl [2015-06-04 19:26 +0200]:
  I am not able to use bootctl install to install the recently added
  systemd bootloader:
  
  # bootctl install --path=/boot/efi
  Created /boot/efi/EFI/systemd.
  Created /boot/efi/EFI/Boot.
  Created /boot/efi/loader.
  Created /boot/efi/loader/entries.
  Failed to open /usr/lib/systemd/boot/efi: No such file or directory
  
  That directory/file is indeed missing but can be found in the upstream
  Makefile. Please make sure to include it in the Debian package.

BTW, this is because of the new HAVE_GNUEFI which is false for a
Debian build. This would enable building the files/binaries in
boot/efi/.

To properly fix this, bootctl.c should conditionalize the availability
of install and friends on HAVE_GNUEFI. Or, we just don't install it at
all as you suggest.

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)


signature.asc
Description: Digital signature


Bug#787936: [wine] Unable to satisfy the build-depends: libpng-dev

2015-06-06 Thread OmegaPhil
Package: wine
Version: 1.6.2-20
Severity: normal

On my 32bit VM, running 'sudo aptitude build-dep wine' results in the
following:

===

Unable to satisfy the build-depends: Build-Depends: libpng-dev.

===

libpng-dev is a virtual package that points to libpng12-dev, which is
currently installed.


Reporting from my main machine, the following is my VM is setup:

--- System information. ---
Architecture: i386
Kernel:   Linux 3.16.0-4-amd64

Debian Release: stretch/sid




signature.asc
Description: OpenPGP digital signature


  1   2   >