Bug#809136: marked as done (Block borgbackup migration to stable for now)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2016 08:11:54 +0100
with message-id <5699ed3a.1040...@danny-edel.de>
and subject line Upload done
has caused the Debian Bug report #809136,
regarding Block borgbackup migration to stable for now
to be marked as done.

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

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


-- 
809136: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809136
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: borgbackup
Version: 0.29.0-1
Severity: important

Hi.

borgbackup broke API compatibility between 0.28 and 0.29 versions. You
need to have both server and client on the same version for borgbackup
to work.

This has been documented by upstream, telling users that they need to
have both server and client on the same version. This has,
unfortunately, been ignored by Debian when packaging the software.

The workaround suggested by upstream seriously is to have all
incompatible versions of the server installed and having the client
choose which server to use.

So debian would need to have a borgbackup-0.28 package and a
borgbackup-0.29 package and all incompatible API versions
simultaneously since it is extremely unlikely that Debian unstable,
testing and stable will have compatible versions of borgbackup and
that one surely will want to back up unstable systems to a stable
server or vice versa.

With uncooperative (and not even understanding the issue) upstream
like that, providing a Debian package of borgbackup will be an extreme
challenge.

I suggest the following addition to the package description in case
this issue is not solveable:

"
Please note that the server and the client should be on the same
version of borgbackup. Using different versions of borgbackup on
client and server might result in 'incompatible API version' error
messages and a non-working backup.
"

Greetings
Marc
--- End Message ---
--- Begin Message ---
Version: 0.29.0-3

The changes have been uploaded to the Debian archive, and the changelog
did contain a Closes: stance[1].

Since the bug didn't close, I'm doing it manually this way.

Antoine: This should ready the way for the backport, if there's anything
else I can do or help with, please let me know.

Cheers!

- Danny


[1]: https://tracker.debian.org/news/740683--- End Message ---


Bug#811148: vatnumber: FTBFS with python3.5 as default due to hardcoded versions

2016-01-15 Thread Logan Rosen
Package: vatnumber
Version: 1:1.2-4
Severity: serious
Tags: patch
Justification: fails to build from source (but built successfully in the past)
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu xenial ubuntu-patch

vatnumber currently FTBFS in unstable due to python3.5 being the default
version of python3, since the tests are only disabled for the hardcoded
python3.4 (and python2.7) in debian/rules.

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

  * Disable tests for all Python versions instead of hardcoding them. Fixes
FTBFS with Python 3.5.

Thanks for considering the patch.

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

Kernel: Linux 4.2.0-19-generic (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru vatnumber-1.2/debian/rules vatnumber-1.2/debian/rules
--- vatnumber-1.2/debian/rules	2015-05-18 15:42:08.0 -0400
+++ vatnumber-1.2/debian/rules	2016-01-16 00:36:04.0 -0500
@@ -3,8 +3,7 @@
 PACKAGE_NAME := $(shell python setup.py --name)
 export PYBUILD_NAME=$(PACKAGE_NAME)
 # Don't run tests for vatnumber, test_vies tries to connect to the network
-export PYBUILD_DISABLE_python2.7=test
-export PYBUILD_DISABLE_python3.4=test
+export PYBUILD_DISABLE=test
 
 %:
 	dh ${@} --with python2,python3 --buildsystem=pybuild


Bug#811142: marked as done (hy3 no longer works, since Debian sid now defaults to python3.5)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2016 04:48:58 +
with message-id 
and subject line Bug#811142: fixed in hy 0.11.1-1
has caused the Debian Bug report #811142,
regarding hy3 no longer works, since Debian sid now defaults to python3.5
to be marked as done.

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

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


-- 
811142: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811142
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: hy
Version: 0.11.0-4
Severity: grave
Justification: renders package unusable

Dear Maintainer,

Since python3.5 recently became the default python3 in Debian sid, hy3
no longer works.  Running most hy3 commands, whether in the REPL or
calling a script, now leads to compiler errors.  For example:

hy3 -c "(+ 3 2)"

Results in:

Traceback (most recent call last):
  File "/usr/bin/hy3", line 9, in 
load_entry_point('hy==0.11.0', 'console_scripts', 'hy')()
  File "/usr/lib/python3/dist-packages/hy/cmdline.py", line 347, in hy_main
sys.exit(cmdline_handler("hy", sys.argv))
  File "/usr/lib/python3/dist-packages/hy/cmdline.py", line 317, in 
cmdline_handler
return run_command(options.command)
  File "/usr/lib/python3/dist-packages/hy/cmdline.py", line 184, in run_command
import_buffer_to_module("__main__", source)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 93, in 
import_buffer_to_module
_ast = import_buffer_to_ast(buf, module_name)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 62, in 
import_buffer_to_ast
return hy_compile(import_buffer_to_hst(buf), module_name)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 2278, in hy_compile
compiler = HyASTCompiler(module_name)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 378, in __init__
load_stdlib()
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 73, in load_stdlib
mod = importlib.import_module(module)
  File "/usr/lib/python3.5/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 986, in _gcd_import
  File "", line 969, in _find_and_load
  File "", line 958, in _find_and_load_unlocked
  File "", line 664, in _load_unlocked
  File "", line 634, in _load_backward_compatible
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 180, in load_module
self.path)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 75, in 
import_file_to_module
_ast = import_file_to_ast(fpath, module_name)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 67, in 
import_file_to_ast
return hy_compile(import_file_to_hst(fpath), module_name)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 2279, in hy_compile
result = compiler.compile(tree)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 428, in compile
ret = self.compile_atom(_type, tree)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 420, in 
compile_atom
ret = _compile_table[atom_type](self, atom)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 596, in 
compile_raw_list
ret = self._compile_branch(entries)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 483, in 
_compile_branch
return _branch(self.compile(expr) for expr in exprs)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 313, in _branch
results = list(results)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 483, in 
return _branch(self.compile(expr) for expr in exprs)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 440, in compile
raise_empty(HyCompileError, e, sys.exc_info()[2])
  File "", line 1, in raise_empty
hy.errors.HyCompileError: Internal Compiler Bug 😱
⤷ TypeError: required field "lineno" missing from arg
Compilation traceback:
File "/usr/lib/python3/dist-packages/hy/compiler.py", line 428, in compile
ret = self.compile_atom(_type, tree)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 420, in 
compile_atom
ret = _compile_table[atom_type](self, atom)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 1767, in 
compile_expression
expression = macroexpand(expression, self.module_name)
  File "/usr/lib/python3/dist-packages/hy/macros.py", line 170, in macroexpand
load_macros(module_name)
  File "/usr/lib/python3/dist-packages/hy/macros.py", line 154, in load_macros
_import(module)
  File "/usr/lib/python3/dist-packages/hy/macros.py", line 151, in _import
__import__(module)
  File "", line 969, in _find_and_load
  File "", line 958, in _find_and_load_unlocked
  

Bug#809054: marked as done (subversion fails to build with -Wdate-time in CPPFLAGS)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2016 04:35:00 +
with message-id 
and subject line Bug#809054: fixed in subversion 1.9.3-2
has caused the Debian Bug report #809054,
regarding subversion fails to build with -Wdate-time in CPPFLAGS
to be marked as done.

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

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


-- 
809054: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809054
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: subversion,unbound,swig
Severity: wishlist
User: reproducible-bui...@lists.alioth.debian.org
Usertags: toolchain
x-debbugs-cc: reproducible-bui...@lists.alioth.debian.org


Hi subversion, unbound and swig maintainers,
we in the Reproducible Builds effort use a non default dpkg which export
-Wdate-time through dpkg-buildflags.

There are package that pass CPPFLAGS (for example) quite unchanged to swig.

Sadly swig does not recognize -Wdate-time and choke and fail on it badly, e.g.

/usr/bin/swig -I. -Wdate-time -D_FORTIFY_SOURCE=2 -I/usr/include/python2.7 
-I/usr/include/python2.7 -o pythonmod/interface.h -python 
./pythonmod/interface.i
swig error : Unrecognized option -Wdate-time
Use 'swig -help' for available options.
Makefile:369: recipe for target 'pythonmod/interface.h' failed
make[1]: *** [pythonmod/interface.h] Error 1


Needless to say, I'd like to build those packages with such flag (that we also
would like to get into the default set, see the bug #762683 for a start).


Possible solutions i see for this:

a. swig stops failing so badly on unrecognized options. If you really want to
   validate the options at least stop failing on unrecognized -W? Seems quite
   logical to pass CPPFLAGS to swig to me, and as such sounds sane
b. people stop passing CPPFLAGS to swig. I've already saw a "CPPFLAGS cleaner"
   on subversion's configure script. Please I don't want to see another


Even if I do have preference I don't have a strong opinion on this, so if you
agree this is not a bug in swig (which I could even accept, given that the
accepted flags are well documented), I'll just clone+reassign this bug around.


Thanks for maintaining such packages!

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540 .''`.
more about me:  http://mapreri.org : :'  :
Launchpad user: https://launchpad.net/~mapreri `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia `-


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: subversion
Source-Version: 1.9.3-2

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

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

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

Debian distribution maintenance software
pp.
James McCoy  (supplier of updated subversion package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 15 Jan 2016 22:45:33 -0500
Source: subversion
Binary: subversion subversion-dbg libsvn1 libsvn-dev libsvn-doc 
libapache2-mod-svn libapache2-svn python-subversion subversion-tools 
libsvn-java libsvn-perl ruby-svn libsvn-ruby1.8
Architecture: source
Version: 1.9.3-2
Distribution: unstable
Urgency: medium
Maintainer: Peter Samuelson 
Changed-By: James McCoy 
Closes: 809054
Description: 
 libapache2-mod-svn - Apache Subversion server modules for Apache httpd
 libapache2-svn - Apache Subversion server modules for Apache httpd (dummy 
package)
 libsvn1- Shared libraries used by Apache Subversion
 libsvn-dev - Development files for Apache Subversion libraries
 libsvn-doc - Developer documentation for libsvn
 libsvn-java - Java bindings for Apache Subversion
 libsvn-perl - Perl bindings for Apache Subversion
 libsvn-ruby1.8 - Ruby bindings for Apache Subversion (dummy package)
 python-subversion - Python bindings for Apache Subversion
 ruby-svn   - Ruby bindings for Apache Subversion
 subversion - Advanced version control system
 subversion-dbg - Debug symbols for Apache Subversion
 subversion-tools - Assorted tools related to Apache Subversion
Changes:
 subversion (1.9.3-2) unstable; urgency=medium
 .
  

Bug#808630: marked as done (altos: FTBFS: ao-dbg-main.c: error: storage size of 'vec' isn't known)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 21:29:01 -0700 (MST)
with message-id <20160116042901.2ad07bc3...@rover.gag.com>
and subject line 1.6.2-1 in unstable
has caused the Debian Bug report #808630,
regarding altos: FTBFS: ao-dbg-main.c: error: storage size of 'vec' isn't known
to be marked as done.

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

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


-- 
808630: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808630
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: altos
Version: 1.6.1-1
Severity: serious
Justification: fails to build from source
Tags: sid 
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

gcc -DHAVE_CONFIG_H -I. -I../..-I../../ao-tools/lib 
-I/usr/include/libusb-1.0 -g -MT ao-dbg-main.o -MD -MP -MF 
.deps/ao-dbg-main.Tpo -c -o ao-dbg-main.o ao-dbg-main.c
ao-dbg-main.c: In function ‘main’:
ao-dbg-main.c:69:16: error: storage size of ‘vec’ isn’t known
  struct sigvec vec, ovec;
^
ao-dbg-main.c:69:21: error: storage size of ‘ovec’ isn’t known
  struct sigvec vec, ovec;
 ^
ao-dbg-main.c:175:4: warning: implicit declaration of function ‘sigvec’ 
[-Wimplicit-function-declaration]
sigvec(SIGINT, &vec, &ovec);
^
Makefile:460: recipe for target 'ao-dbg-main.o' failed
make[4]: *** [ao-dbg-main.o] Error 1
make[4]: Leaving directory '/altos-1.6.1/ao-tools/ao-dbg'

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/altos.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
--- End Message ---
--- Begin Message ---
Version 1.6.2-1 is now in unstable and has autobuilt for many architectures.

Bdale--- End Message ---


Bug#804568: cmtk: diff for NMU version 3.2.2-1.4

2016-01-15 Thread Mattia Rizzolo
On Fri, Jan 15, 2016 at 10:51:09PM -0500, Yaroslav Halchenko wrote:
> > 2) I removed versioned development packages in favour of unversioned
> >ones.  This should actually make *easier* backporting, as in all the
> >past debian releases there is a package providing, e.g. libdcmtk-dev,
> >even if at the time was different than the current one (now there is
> >libdcmtk5, in jessie there is libdcmtk2).
> 
> so not all (at least not the ancient squeeze and wheezy... we do still build 
> for wheezy)

umh, ok.

but libtiff-dev and libcharls-dev are both in wheezy ;)


Anyway, now you have a syncable package in Ubuntu (I already request a
sync to a MOTU friend of mine) and a buildable package that will migrate
to testing and as such will have chances to be in stretch.
Sorry if I accidentally caused more troubles for you (did not knowing
the full life and use cases of this package).

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  http://mapreri.org  : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature


Bug#804568: cmtk: diff for NMU version 3.2.2-1.4

2016-01-15 Thread Yaroslav Halchenko

On Sat, 16 Jan 2016, Mattia Rizzolo wrote:

> On Fri, Jan 15, 2016 at 10:51:09PM -0500, Yaroslav Halchenko wrote:
> > > 2) I removed versioned development packages in favour of unversioned
> > >ones.  This should actually make *easier* backporting, as in all the
> > >past debian releases there is a package providing, e.g. libdcmtk-dev,
> > >even if at the time was different than the current one (now there is
> > >libdcmtk5, in jessie there is libdcmtk2).

> > so not all (at least not the ancient squeeze and wheezy... we do still 
> > build for wheezy)

> umh, ok.

> but libtiff-dev and libcharls-dev are both in wheezy ;)


> Anyway, now you have a syncable package in Ubuntu (I already request a
> sync to a MOTU friend of mine) and a buildable package that will migrate
> to testing and as such will have chances to be in stretch.
> Sorry if I accidentally caused more troubles for you (did not knowing
> the full life and use cases of this package).

no problem at all -- thanks for all your help!

-- 
Yaroslav O. Halchenko
Center for Open Neuroscience http://centerforopenneuroscience.org
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik



Bug#804568: cmtk: diff for NMU version 3.2.2-1.4

2016-01-15 Thread Yaroslav Halchenko

On Sat, 16 Jan 2016, Mattia Rizzolo wrote:

> On Fri, Jan 15, 2016 at 10:40:20PM -0500, Yaroslav Halchenko wrote:
> > thanks!!! feel free to reupload without delay

> oh, that was quick ;)
> ok, I'll reschedule to 0-day, than.  Thank you!

> > when I get to that package though I will return alternative
> > build-depends which are listed there so we could easily backport build
> > this package on older debian/ubuntu releases:
> > http://neuro.debian.net/pkgs/cmtk.html?highlight=cmtk
> > see -- all are covered there ;)

> umh, but the changes I did should really not affect backporting:
> 1) alternative build depends are not considered by Debian's buildds,
>only the first is used

yeap -- but they are "considered" by pbuilder's satisfy-depends whenever
leading one can't even be found (since likely to be not available on
older releases)

> 2) I removed versioned development packages in favour of unversioned
>ones.  This should actually make *easier* backporting, as in all the
>past debian releases there is a package providing, e.g. libdcmtk-dev,
>even if at the time was different than the current one (now there is
>libdcmtk5, in jessie there is libdcmtk2).

$> whohas -D Debian,Ubuntu --strict libdcmtk-dev   
Ubuntu  libdcmtk-dev   all  
 http://packages.ubuntu.com/trusty/libdcmtk-dev
Ubuntu  libdcmtk-dev   all  
 http://packages.ubuntu.com/vivid/libdcmtk-dev
Ubuntu  libdcmtk-dev   all  
 http://packages.ubuntu.com/wily/libdcmtk-dev
Ubuntu  libdcmtk-dev3.6.1~20150629-5   693Kall  
 http://packages.ubuntu.com/xenial/libdcmtk-dev
Debian  libdcmtk-dev   all  
 http://packages.debian.org/jessie/libdcmtk-dev
Debian  libdcmtk-dev   all  
 http://packages.debian.org/stretch/libdcmtk-dev
Debian  libdcmtk-dev3.6.1~20150924-4   807Kall  
 http://packages.debian.org/sid/libdcmtk-dev

so not all (at least not the ancient squeeze and wheezy... we do still build 
for wheezy)

-- 
Yaroslav O. Halchenko
Center for Open Neuroscience http://centerforopenneuroscience.org
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik



Bug#804568: cmtk: diff for NMU version 3.2.2-1.4

2016-01-15 Thread Mattia Rizzolo
On Fri, Jan 15, 2016 at 10:40:20PM -0500, Yaroslav Halchenko wrote:
> thanks!!! feel free to reupload without delay

oh, that was quick ;)
ok, I'll reschedule to 0-day, than.  Thank you!

> when I get to that package though I will return alternative
> build-depends which are listed there so we could easily backport build
> this package on older debian/ubuntu releases:
> http://neuro.debian.net/pkgs/cmtk.html?highlight=cmtk
> see -- all are covered there ;)

umh, but the changes I did should really not affect backporting:
1) alternative build depends are not considered by Debian's buildds,
   only the first is used
2) I removed versioned development packages in favour of unversioned
   ones.  This should actually make *easier* backporting, as in all the
   past debian releases there is a package providing, e.g. libdcmtk-dev,
   even if at the time was different than the current one (now there is
   libdcmtk5, in jessie there is libdcmtk2).

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  http://mapreri.org  : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature


Bug#800282: marked as done (icmpush: Please migrate a supported debhelper compat level)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2016 03:49:58 +
with message-id 
and subject line Bug#800282: fixed in icmpush 2.2-6.1
has caused the Debian Bug report #800282,
regarding icmpush: Please migrate a supported debhelper compat level
to be marked as done.

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

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


-- 
800282: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=800282
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: icmpush
Severity: important
Usertags: deprecated-debhelper-compat-leq-3

Hi,

The package icmpush is using a debhelper compat level of 3 or less
according to lintian.  These compat levels have been deprecated for
the past ~10 years and debhelper will remove support for them in the near
future (as declared in [1]).

 * Please migrate the package to a supported debhelper compat level.
   - Compat 9 is recommended
   - Compat 5 is the bare minimum (compat 4 will be removed soon as
 well)

 * If your package uses any of the following tools, please remove them
   from the rules files.  Neither of them does anything except warn
   about their deprecation.
   - dh_desktop
   - dh_scrollkeeper (deadline: January 1st 2016)
   - dh_suidregister
   - dh_undocumented

 * Please note that your package might have been flagged for using
   e.g. "DH_COMPAT=2 dh_foo ...".
   - This will still cause issues when the compat level is removed.

 * If the package has been relying on dh_install being lenient about
   missing files, please see "MIGRATING TO COMPAT 5 OR LATER" in [1].

 * Deadline: 
   - compat 1+2: November 1st 2015
   - compat 3: January 1st 2016

If you are using other deprecated debhelper features (such as omitting
the debian/compat file), please consider fixing those while you are at
it.

Thanks,
~Niels

[1] https://lists.debian.org/debian-devel/2015/09/msg00257.html
--- End Message ---
--- Begin Message ---
Source: icmpush
Source-Version: 2.2-6.1

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

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

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

Debian distribution maintenance software
pp.
Raphael Mota Ramos  (supplier of updated icmpush 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jan 2016 11:00:47 -0200
Source: icmpush
Binary: icmpush
Architecture: source
Version: 2.2-6.1
Distribution: unstable
Urgency: medium
Maintainer: Ola Lundqvist 
Changed-By: Raphael Mota Ramos 
Description:
 icmpush- ICMP packet builder
Closes: 800282
Changes:
 icmpush (2.2-6.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Update DH level to 9 to avoid a FTBFS. (Closes: #800282)
   * debian/compat: created.
   * debian/control:
  - Added the ${misc:Depends} variable to provide the
right install dependencies.
  - Bumped Standards-Version to 3.9.6.
   * debian/rules: commented the line "export DH_COMPAT=2" to
 avoid the conflict with the new DH level.
Checksums-Sha1:
 40e6a1102b3941f64860f07cecaa6644e14ab051 1595 icmpush_2.2-6.1.dsc
 db01d81e04a1348bc388d648db5c85c0071dec12 3300 icmpush_2.2-6.1.diff.gz
Checksums-Sha256:
 8b73482cc365adf685b1c7dba8603bc7fb6b9541ac987c10d600470438bc8b21 1595 
icmpush_2.2-6.1.dsc
 8e37538c25b88cb5a145e7f47869224b6451b5ae229dc0d5d645d65055ea594a 3300 
icmpush_2.2-6.1.diff.gz
Files:
 3381ed38b1648723357e77dab5fcd937 1595 net extra icmpush_2.2-6.1.dsc
 285866b68762390138813ec30e47b87f 3300 net extra icmpush_2.2-6.1.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJWjHKcAAoJEN5juccE6+nvSzIP/RoQuwrmC+TAstOuMrIbppQZ
m9d30H/uNgQPaWlcLrhnoT8khKmYMx4VMoogji39or284tspbWVPaTyrCpTopnrS
OazBmsuOXWTaqWcRKP+CQLXIJYhjXHzvP0oupu3KMjs2Tcmd54HvRax0YvvxVvmZ
fPoAtY+Bcj0lxs5UyoWnitPBCTkE2VQ/sUMSMR5LDSlGeUPNMBsYH6r2iV0W3yTK
R4Mzr/8iJOiIWGfNEK3nRd3Cc/JXZQodsbqlqTIwvPfLHYWYfqug+hKJI5JCRCJC
OzmuIHmoiZHuMY5LK2k3xeY3V7g3fpGClLO/HSy6G9VkyMovCpr/ObWAip6ey+wJ
pBQKQpS9UGGpMAc/HQgH/4/RDFv90r0GwzQEInNcXeE/YGjuoHtrNJ208ISo5UxR
Y8reEwZc2OLTCCc4G3L/wWQ2CJ/EkHT5XL/6kwXENXD4GHcjS1x1dzY6mLtF6cp+
iuImTE2jKCx0/XLokQqCuWHL5h1yxWGxfJtr4pXU6cNY0mUswJF+gOVr4zHKfjBx
MR4lbrwzO8eJdhsjcwP6Vt3YO2SklWi5bkRSnfMACc1Mskm1lGEBUoWmofgT1LsL
S

Bug#804568: marked as done (cmtk: build-depends on libdcmtk2-dev which is no longer built)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2016 03:49:36 +
with message-id 
and subject line Bug#804568: fixed in cmtk 3.2.2-1.4
has caused the Debian Bug report #804568,
regarding cmtk: build-depends on libdcmtk2-dev which is no longer built
to be marked as done.

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

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


-- 
804568: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=804568
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: cmtk
Version: 3.2.2-1.3
Severity: serious

Your package build-depends on libdcmtk2-dev, which is no longer
built by src:dcmtk. You should build-depend on libdcmtk-dev now.

Note that if you want to use alternatives, then libdcmtk-dev
should be the first one, as Debian buildds only look at that.

Emilio
--- End Message ---
--- Begin Message ---
Source: cmtk
Source-Version: 3.2.2-1.4

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

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

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

Debian distribution maintenance software
pp.
Mattia Rizzolo  (supplier of updated cmtk package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 16 Jan 2016 03:31:16 +
Source: cmtk
Binary: cmtk
Architecture: source
Version: 3.2.2-1.4
Distribution: unstable
Urgency: medium
Maintainer: NeuroDebian Team 
Changed-By: Mattia Rizzolo 
Description:
 cmtk   - Computational Morphometry Toolkit
Closes: 804568
Changes:
 cmtk (3.2.2-1.4) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Remove alternate Build-Dependency on libtiff4-dev, that package doesn't
 exist anymore.
   * Remove alternate Build-Dependencies on libdcmtk1-dev and libdcmtk2-dev,
 keeping only the unversioned libdcmtk-dev.  Closes: #804568
   * Move the upstream metadata file to debian/upstream/metadata.
   * Add a patch (fix_cmake_version_comparison) to fix FTBFS with newer sqlite3
 with a version that makes cmake's STRGREATER misbehave (use VERSION_GREATER
 instead).
   * Add a patch (dcmtk-3.6.1-compatibility) taken from Ubuntu taken from
 upstream to fix FTBFS with newer dcmtk.
Checksums-Sha1:
 77220a459a0ad9edb1c5610cb050ffab9e8ff285 2129 cmtk_3.2.2-1.4.dsc
 bc9509ad1e3fd3d169698cb853aa5e6b247b9ce8 9976 cmtk_3.2.2-1.4.debian.tar.xz
Checksums-Sha256:
 5eaeddf59f69c5f00487b102d4b90c8da44e28b0768e6adc4f3e7cb4bf996670 2129 
cmtk_3.2.2-1.4.dsc
 756fd990445316ee2a42fdda0ea24d3a7e60117847ba45dd7b7afb56cf43b63e 9976 
cmtk_3.2.2-1.4.debian.tar.xz
Files:
 62059fa4b3b2de5840372caa751743be 2129 science extra cmtk_3.2.2-1.4.dsc
 82aafd5516284195b19270623af3beeb 9976 science extra 
cmtk_3.2.2-1.4.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWmbnTAAoJEEsEP825REVAruAQAK1QK+pWhoIombKaMxBs3dop
1hy3tOBNG2ScYXlKfH90DRfKtnSfn58wdAARa5W4ZLH9PppuQxGsKXjlWtnnX0lj
IaZRsk9vRazhW42jhz6PAEgEY609RYYYMRadIHIL8taUHHSPHUJRN+UkEN3GfE8Q
HGBq30Qp5jRtfXWPmKDGmZG9SnP5GS/TeH6H43GXmSmnatiCNJbRgJcTAhdlh2Eb
cz9ASpfcuvljtukfSypI+dPI6rNFTztNR6QRNG1IWXxOv9vvZY2z53FKOYuuuMtV
D6hfMKGIH5sHmzIixOVLVnKsUmiyd1kXNS7et1Wat9sKWeLz6SVpYix0+zGdEvG0
HH42HDlWcsencI9tmzzr8hM9gctSZL5CdCZfs6Ap28ELK96CwcVDiRDfX5AwHv0z
KhXGa1DDxw12FflWKwh7N2BDJRyBeN1PcZeBpFB9Mg/QjwSYyaUq/zM23+XOLaXS
apb/9vninc4dJx0zlMJUbt+gdafK3BBYgAK7D3njJntmEI0G/seLrTnxU20u7z2y
z4pd332ULuBD0Wcd54oNaGR/9VQmtmKWLUeE7aPZT0o/LtgDReuXLpN5QCNxNzka
xZMY8IpHDNX1F2IEI3CL+HSTjw0xoLxQssEBhzMqFtHORddYZWhqGkV6RQkcColw
aDQvdz8cbQTddWu+0+S5
=rehj
-END PGP SIGNATURE End Message ---


Processed: subversion Debian ci: r1502 - in src/1.9.x/debian: . patches

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 809054 pending
Bug #809054 [subversion] subversion fails to build with -Wdate-time in CPPFLAGS
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
809054: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809054
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#804568: cmtk: diff for NMU version 3.2.2-1.4

2016-01-15 Thread Yaroslav Halchenko

On Sat, 16 Jan 2016, Mattia Rizzolo wrote:

> Control: tags 804568 + patch
> Control: tags 804568 + pending

> Dear maintainer,

> I've prepared an NMU for cmtk (versioned as 3.2.2-1.4) and
> uploaded it to DELAYED/2. Please feel free to tell me if I
> should delay it longer.

> The package also FTBFS in the current state, for 2 reasons, even.

thanks!!! feel free to reupload without delay

when I get to that package though I will return alternative
build-depends which are listed there so we could easily backport build
this package on older debian/ubuntu releases:
http://neuro.debian.net/pkgs/cmtk.html?highlight=cmtk
see -- all are covered there ;)

-- 
Yaroslav O. Halchenko
Center for Open Neuroscience http://centerforopenneuroscience.org
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik



Processed: cmtk: diff for NMU version 3.2.2-1.4

2016-01-15 Thread Debian Bug Tracking System
Processing control commands:

> tags 804568 + patch
Bug #804568 [cmtk] cmtk: build-depends on libdcmtk2-dev which is no longer built
Added tag(s) patch.
> tags 804568 + pending
Bug #804568 [cmtk] cmtk: build-depends on libdcmtk2-dev which is no longer built
Added tag(s) pending.

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



Bug#804568: cmtk: diff for NMU version 3.2.2-1.4

2016-01-15 Thread Mattia Rizzolo
Control: tags 804568 + patch
Control: tags 804568 + pending

Dear maintainer,

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

The package also FTBFS in the current state, for 2 reasons, even.

Regards.

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  http://mapreri.org  : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-
diffstat for cmtk-3.2.2 cmtk-3.2.2

 changelog|   16 
 control  |6 +++---
 patches/dcmtk-3.6.1-compatibility|   30 ++
 patches/fix_cmake_version_comparison |   29 +
 patches/series   |2 ++
 5 files changed, 80 insertions(+), 3 deletions(-)

diff -Nru cmtk-3.2.2/debian/changelog cmtk-3.2.2/debian/changelog
--- cmtk-3.2.2/debian/changelog	2014-12-20 08:14:19.0 +
+++ cmtk-3.2.2/debian/changelog	2016-01-16 03:31:17.0 +
@@ -1,3 +1,19 @@
+cmtk (3.2.2-1.4) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Remove alternate Build-Dependency on libtiff4-dev, that package doesn't
+exist anymore.
+  * Remove alternate Build-Dependencies on libdcmtk1-dev and libdcmtk2-dev,
+keeping only the unversioned libdcmtk-dev.  Closes: #804568
+  * Move the upstream metadata file to debian/upstream/metadata.
+  * Add a patch (fix_cmake_version_comparison) to fix FTBFS with newer sqlite3
+with a version that makes cmake's STRGREATER misbehave (use VERSION_GREATER
+instead).
+  * Add a patch (dcmtk-3.6.1-compatibility) taken from Ubuntu taken from
+upstream to fix FTBFS with newer dcmtk.
+
+ -- Mattia Rizzolo   Sat, 16 Jan 2016 03:31:16 +
+
 cmtk (3.2.2-1.3) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru cmtk-3.2.2/debian/control cmtk-3.2.2/debian/control
--- cmtk-3.2.2/debian/control	2014-09-21 09:31:19.0 +
+++ cmtk-3.2.2/debian/control	2016-01-16 03:02:01.0 +
@@ -8,15 +8,15 @@
libmxml-dev,
libsqlite3-dev,
zlib1g-dev | libz-dev,
-   libdcmtk2-dev | libdcmtk1-dev | libdcmtk-dev,
+   libdcmtk-dev,
libbz2-dev,
libfftw3-dev,
liblzma-dev,
libqt4-dev, qt4-qmake,
libpng-dev,
-   libtiff-dev | libtiff4-dev,
+   libtiff-dev,
libwrap0-dev,
-   libcharls-dev | libdcmtk1-dev | libdcmtk2-dev (<< 3.6.0-8~),
+   libcharls-dev,
libxml2-dev,
libssl-dev,
xvfb, bc, dc,
diff -Nru cmtk-3.2.2/debian/patches/dcmtk-3.6.1-compatibility cmtk-3.2.2/debian/patches/dcmtk-3.6.1-compatibility
--- cmtk-3.2.2/debian/patches/dcmtk-3.6.1-compatibility	1970-01-01 00:00:00.0 +
+++ cmtk-3.2.2/debian/patches/dcmtk-3.6.1-compatibility	2016-01-16 03:25:32.0 +
@@ -0,0 +1,30 @@
+Description: Add back some missing defines removed from dcmtk
+Origin: http://www.nitrc.org/plugins/scmsvn/viewcvs.php/trunk/core/libs/IO/cmtkDICOM.cxx?root=cmtk&r1=5376&r2=5390
+Acked-By: Mattia Rizzolo 
+Last-Update: 2016-01-16
+
+--- a/libs/IO/cmtkDICOM.cxx
 b/libs/IO/cmtkDICOM.cxx
+@@ -53,6 +53,22 @@
+ #include 
+ #include 
+ 
++#ifndef DCM_ACR_NEMA_ImagePosition
++#  define DCM_ACR_NEMA_ImagePosition DcmTagKey(0x0020, 0x0030)
++#endif
++
++#ifndef DCM_ACR_NEMA_ImageOrientation
++#  define DCM_ACR_NEMA_ImageOrientation DcmTagKey(0x0020, 0x0035)
++#endif
++
++#ifndef DCM_ACR_NEMA_Location
++#  define DCM_ACR_NEMA_Location DcmTagKey(0x0020, 0x0050)
++#endif
++
++#ifndef DCM_ACR_NEMA_2C_VariablePixelData
++#  define DCM_ACR_NEMA_2C_VariablePixelData DcmTagKey(0x7f00, 0x0010)
++#endif
++
+ namespace
+ cmtk
+ {
diff -Nru cmtk-3.2.2/debian/patches/fix_cmake_version_comparison cmtk-3.2.2/debian/patches/fix_cmake_version_comparison
--- cmtk-3.2.2/debian/patches/fix_cmake_version_comparison	1970-01-01 00:00:00.0 +
+++ cmtk-3.2.2/debian/patches/fix_cmake_version_comparison	2016-01-16 03:32:29.0 +
@@ -0,0 +1,29 @@
+Description: use cmake's VERSION_GREATER instead of STRGREATER when comparing lib versions…
+Author: Mattia Rizzolo 
+Last-Update: 2016-01-16
+Forwarded: no
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -511,18 +511,18 @@
+ INCLUDE_DIRECTORIES(BEFORE ${SQLITE_INCLUDE_DIR})
+   ELSE(CMTK_BUILD_SQLITE)
+ INCLUDE(${CMAKE_CURRENT_SOURCE_DIR}/CMake/FindSQLite3.cmake)
+-IF(SQLITE3_FOUND AND SQLITE3_VERSION STRGREATER "3.5.0")
++IF(SQLITE3_FOUND AND SQLITE3_VERSION VERSION_GREATER "3.5.0")
+   MESSAGE( STATUS "Using system sqlite3 library" )
+   SET(SQLITE_INCLUDE_DIR "${SQLITE3_INCLUDE

Bug#810990: libxmlrpcpp-dev: /usr/include/base64.h already shipped by heimdal-dev

2016-01-15 Thread Wookey

The two base64.h files are not at all similar, so just referring to the other 
one does not help.
heimdal's just provides two function headers (in a win32-compatible way):
ROKEN_LIB_FUNCTION int base64_encode(const void *, int, char **);
ROKEN_LIB_FUNCTION int base64_decode(const char *, void *);

The ros-ros-comm one provides a whole base64-encode/decode C++ implementation.

I've not looked to see how much commonality there is in the other 101
'base64.h' include files in all the other packages. I do wonder if a
libbase64-dev is what's really needed here.  The file comes from an
embedded xmlrpcpp implementation from Chris Morley which should
probably be packaged separately anyway.
http://sourceforge.net/projects/xmlrpcpp/
Which is seems used to be in debian but was removed in 2008: 
https://tracker.debian.org/pkg/xmlrpc++
That is the same version. Available here: 
http://snapshot.debian.org/package/xmlrpc%2B%2B/0.7%2Bcvs20040713-2.1/
This could be resurrected. I think it has the same base64.h file clash though.

Debian now has this xmplrpc c++ implementation: 
https://tracker.debian.org/pkg/xmlrpc-c
maybe ros-ros-comm could just use that? I've not looked to see how well the 
APIs match up. 

Wookey
-- 
Principal hats:  Linaro, Debian, Wookware, ARM
http://wookware.org/


signature.asc
Description: Digital signature


Processed: block 810860 with 810965

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 810860 with 810965
Bug #810860 [usrmerge] usrmerge: System cannot be rebooted after partial 
usrmerge installation
810860 was not blocked by any bugs.
810860 was not blocking any bugs.
Added blocking bug(s) of 810860: 810965
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
810860: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810860
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#811144: FTBFS: error: expected identifier or '(' before '__extension__'

2016-01-15 Thread Martin Michlmayr
Package: dwww
Version: 1.12.1
Severity: serious

dwww fails to build in unstable:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> creating /<>/scripts/_build/functions.sh
> gcc -c -Wdate-time -D_FORTIFY_SOURCE=2 -DVERSION='"1.12.1"' -g -O2 
> -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wextra 
> -Wstrict-prototypes -Wmissing-prototypes -Werror -g  -o _build/dwww-cache.o 
> dwww-cache.c
> In file included from /usr/include/string.h:634:0,
>  from dwww-cache.c:30:
> /usr/include/publib/strutil.h:67:7: error: expected identifier or '(' before 
> '__extension__'
>  char *strndup(const char *, size_t);
>^
> Makefile:25: recipe for target '_build/dwww-cache.o' failed

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise



Bug#808401: Bug#808401: plastimatch: FTBFS: itkGDCMSeriesFileNames.h:25:29: fatal error: gdcmSerieHelper.h: No such file or directory

2016-01-15 Thread Mattia Rizzolo
On Sun, Dec 20, 2015 at 03:19:16PM +0100, Gert Wollny wrote:
> On Sat, 2015-12-19 at 22:55 +0100, Andreas Tille wrote:
> > Hi Gert,
> > 
> > On Sat, Dec 19, 2015 at 09:32:58PM +0100, Gert Wollny wrote:
> > > It seems that there is a conflict in which gdcm version is used. 
> > > The log says that gdcm-2.6 was found but later the include files 
> > > for gdcm-2.4 are used.
> > > 
> > > I guess itk needs to be rebuild against gdcm-2.6 since it seems to 
> > > pull in the old version.
> > 
> > Sounds sensible.  Do you need any help for this?
> 
> Well, it turns out that Emilio from the release team already tried to
> build ITK against the new gdcm. 
> 
> Which means this bug is now blocked by #808491, which is something for
> which I need help from upstream ITK and/or GDCM. 

That bug has now been fixed, can this proceed, then?

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  http://mapreri.org  : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature


Bug#811142: hy3 no longer works, since Debian sid now defaults to python3.5

2016-01-15 Thread Tianon Gravi
On 15 January 2016 at 17:39, Siat N  wrote:
> Since python3.5 recently became the default python3 in Debian sid, hy3
> no longer works.  Running most hy3 commands, whether in the REPL or
> calling a script, now leads to compiler errors.  For example:

Oh neat, this should be easy to fix since 0.11.1 was created to fix
py3.5 support. :D

♥,
- Tianon
  4096R / B42F 6819 007F 00F8 8E36  4FD4 036A 9C25 BF35 7DD4



Bug#811142: hy3 no longer works, since Debian sid now defaults to python3.5

2016-01-15 Thread Siat N
Package: hy
Version: 0.11.0-4
Severity: grave
Justification: renders package unusable

Dear Maintainer,

Since python3.5 recently became the default python3 in Debian sid, hy3
no longer works.  Running most hy3 commands, whether in the REPL or
calling a script, now leads to compiler errors.  For example:

hy3 -c "(+ 3 2)"

Results in:

Traceback (most recent call last):
  File "/usr/bin/hy3", line 9, in 
load_entry_point('hy==0.11.0', 'console_scripts', 'hy')()
  File "/usr/lib/python3/dist-packages/hy/cmdline.py", line 347, in hy_main
sys.exit(cmdline_handler("hy", sys.argv))
  File "/usr/lib/python3/dist-packages/hy/cmdline.py", line 317, in 
cmdline_handler
return run_command(options.command)
  File "/usr/lib/python3/dist-packages/hy/cmdline.py", line 184, in run_command
import_buffer_to_module("__main__", source)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 93, in 
import_buffer_to_module
_ast = import_buffer_to_ast(buf, module_name)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 62, in 
import_buffer_to_ast
return hy_compile(import_buffer_to_hst(buf), module_name)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 2278, in hy_compile
compiler = HyASTCompiler(module_name)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 378, in __init__
load_stdlib()
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 73, in load_stdlib
mod = importlib.import_module(module)
  File "/usr/lib/python3.5/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 986, in _gcd_import
  File "", line 969, in _find_and_load
  File "", line 958, in _find_and_load_unlocked
  File "", line 664, in _load_unlocked
  File "", line 634, in _load_backward_compatible
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 180, in load_module
self.path)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 75, in 
import_file_to_module
_ast = import_file_to_ast(fpath, module_name)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 67, in 
import_file_to_ast
return hy_compile(import_file_to_hst(fpath), module_name)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 2279, in hy_compile
result = compiler.compile(tree)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 428, in compile
ret = self.compile_atom(_type, tree)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 420, in 
compile_atom
ret = _compile_table[atom_type](self, atom)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 596, in 
compile_raw_list
ret = self._compile_branch(entries)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 483, in 
_compile_branch
return _branch(self.compile(expr) for expr in exprs)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 313, in _branch
results = list(results)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 483, in 
return _branch(self.compile(expr) for expr in exprs)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 440, in compile
raise_empty(HyCompileError, e, sys.exc_info()[2])
  File "", line 1, in raise_empty
hy.errors.HyCompileError: Internal Compiler Bug 😱
⤷ TypeError: required field "lineno" missing from arg
Compilation traceback:
File "/usr/lib/python3/dist-packages/hy/compiler.py", line 428, in compile
ret = self.compile_atom(_type, tree)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 420, in 
compile_atom
ret = _compile_table[atom_type](self, atom)
  File "/usr/lib/python3/dist-packages/hy/compiler.py", line 1767, in 
compile_expression
expression = macroexpand(expression, self.module_name)
  File "/usr/lib/python3/dist-packages/hy/macros.py", line 170, in macroexpand
load_macros(module_name)
  File "/usr/lib/python3/dist-packages/hy/macros.py", line 154, in load_macros
_import(module)
  File "/usr/lib/python3/dist-packages/hy/macros.py", line 151, in _import
__import__(module)
  File "", line 969, in _find_and_load
  File "", line 958, in _find_and_load_unlocked
  File "", line 664, in _load_unlocked
  File "", line 634, in _load_backward_compatible
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 180, in load_module
self.path)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 78, in 
import_file_to_module
eval(ast_compile(_ast, fpath, "exec"), mod.__dict__)
  File "/usr/lib/python3/dist-packages/hy/importer.py", line 43, in ast_compile
return compile(ast, filename, mode, flags)

Thank you very much, and best regards.


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

Kernel: Linux 4.3.0-1-amd64 (SMP w/3 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)

Ve

Bug#811141: FTBFS: CMake Error: The following variables are used in this project

2016-01-15 Thread Martin Michlmayr
Package: orthanc-postgresql
Version: 2.0-1
Severity: serious

orthanc-postgresql fails to build in unstable:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
> -- Looking for C++ include orthanc/OrthancCppDatabasePlugin.h
> -- Looking for C++ include orthanc/OrthancCppDatabasePlugin.h - found
> Setting the version of the libraries to 2.0
> CMake Error: The following variables are used in this project, but they are 
> set to NOTFOUND.
> Please set them or make sure they are set and tested correctly in the CMake 
> files:
> PostgreSQL_TYPE_INCLUDE_DIR (ADVANCED)
>used as include directory in directory /<>
>used as include directory in directory /<>
...
> _Boost_NAMESPACE_LAST:INTERNAL=boost
> //Last used Boost_USE_MULTITHREADED value.
> _Boost_USE_MULTITHREADED_LAST:INTERNAL=TRUE
> 
> dh_auto_configure: cmake .. -DCMAKE_INSTALL_PREFIX=/usr 
> -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None 
> -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var 
> -DCMAKE_SKIP_RPATH:BOOL=ON -DSTATIC_BUILD:BOOL=OFF 
> -DUSE_GTEST_DEBIAN_SOURCE_PACKAGE:BOOL=ON -DCMAKE_BUILD_TYPE= returned exit 
> code 1
> debian/rules:19: recipe for target 'override_dh_auto_configure' failed
> make[1]: *** [override_dh_auto_configure] Error 2
> make[1]: Leaving directory '/<>'

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise



Bug#809053: marked as done (xindy FTBFS due to CPPFLAGS containing spaces)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2016 01:05:13 +
with message-id 
and subject line Bug#809053: fixed in xindy 2.5.1.20160104-1
has caused the Debian Bug report #809053,
regarding xindy FTBFS due to CPPFLAGS containing spaces
to be marked as done.

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

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


-- 
809053: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809053
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:xindy
Version: 2.4-1.3
Severity: serious
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

xindy FTBFS in current sid.
tail of the build log:

 fakeroot debian/rules binary
test -d debian/patched || install -d debian/patched
dpatch  apply-all  
applying patch fix-echo-expansion to ./ ... ok.
applying patch fix-FHS to ./ ... ok.
applying patch help-option to ./ ... ok.
applying patch config.guess+sub to ./ ... ok.
applying patch fix-alphabets-doc-geometry to ./ ... ok.
applying patch fix-configure to ./ ... ok.
applying patch fix-entry-with-command to ./ ... ok.
dpatch  cat-all  >>patch-stampT
mv -f patch-stampT patch-stamp
dh_testdir
if [ -e config.status ]; then \
rm -f build-arch-stamp build-indep-stamp; \
/usr/bin/make distclean || true; \
fi
./configure LDFLAGS="-Wl,-z,relro -Wl,-z,defs" CFLAGS="-g -O2 
-fstack-protector-strong -Wformat -Werror=format-security" CPPFLAGS=-Wdate-time 
-D_FORTIFY_SOURCE=2 --host=x86_64-linux-gnu --build=x86_64-linux-gnu 
--prefix=/usr --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info 
--docdir=\${prefix}/share/doc/xindy-rules
configure: error: unrecognized option: -D_FORTIFY_SOURCE=2
Try `./configure --help' for more information.
debian/rules:33: recipe for target 'config.status-with-latex' failed
make: *** [config.status-with-latex] Error 1
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2



-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  http://mapreri.org  : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: xindy
Source-Version: 2.5.1.20160104-1

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

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

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

Debian distribution maintenance software
pp.
Norbert Preining  (supplier of updated xindy package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 15 Jan 2016 23:01:49 +0900
Source: xindy
Binary: xindy xindy-rules
Architecture: source amd64 all
Version: 2.5.1.20160104-1
Distribution: unstable
Urgency: medium
Maintainer: Debian TeX maintainers 
Changed-By: Norbert Preining 
Description:
 xindy  - index generator for structured documents like LaTeX or SGML
 xindy-rules - rule files for xindy
Closes: 617378 713496 739143 809053
Changes:
 xindy (2.5.1.20160104-1) unstable; urgency=medium
 .
   * Take over of maintainership into Debian TeX group.
   * Ack NMU fixes (Closes: #617378, #713496, #739143)
   * new upstream releases
   * fix FTBFS due to missing quotes around CPPFLAGS (Closes: #809053)
   * switch to quilt format from dpatch
 - rename patches
 - disable config.* dpatch scripts, replace by dh_autotools-dev_updateconfig
 - remove dpatch dependency, change source format
   * bump standards version, no changes necessary
Checksums-Sha1:
 dd7cb49b2337036a9d725f232e6ccd8c59cfe111 2164 xindy_2.5.1.20160104-1.dsc
 cd367d65fd7003d84d256e507864fb235fd6f3db 401075 
xindy_2.5.1.20160104.orig.tar.gz
 b3b8b261cef0372071b14109b4d466495b43e11e 9208 
xindy_2.5.1.20160104-1.debian.tar.xz
 927c9e3a6ba63ba747d74f51a5faa4635af4a445 14074 
xindy-dbgsym_2.5.1.20160104-1_amd64.deb
 ba954f010d25ed9266222b0296f722c6f4fe0b9a 230950 
xindy-rules_2.5.1.20160104-1_all.deb
 1abd3ab21f6e900f4ad6d3a125937080598f66d9 1103766 
xindy_2.5.1.20160104-1_amd64.deb
Checksums-Sha256:
 

Bug#809053: xindy FTBFS due to CPPFLAGS containing spaces

2016-01-15 Thread Norbert Preining
Hi all,

On Sat, 16 Jan 2016, Norbert Preining wrote:
> Indeed, thanks, well spotted!

Fixed and uploaded ...

Norbert


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




Bug#656096: Can be fixed?

2016-01-15 Thread Dean Hamstead

any chance this can be fixed?

ubuntu has had the fix for years



Bug#811139: FTBFS: debian/control needs updating from debian/control.in

2016-01-15 Thread Martin Michlmayr
Package: repmgr
Version: 3.0.2-2
Severity: serious

repmgr fails to build in unstable:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> dpkg-buildpackage: host architecture amd64
>  fakeroot debian/rules clean
> pg_buildext checkcontrol
> --- debian/control2015-10-16 16:02:40.0 +
> +++ debian/control.HkK0AX 2016-01-15 15:39:53.580859882 +
> @@ -68,11 +68,11 @@
>  Description: transitional dummy package
>   This is a transitional dummy package. It can safely be removed.
>  
> -Package: postgresql-9.4-repmgr
> +Package: postgresql-9.5-repmgr
>  Architecture: any
> -Depends: postgresql-9.4, repmgr-common (>= ${source:Version}), 
> ${misc:Depends}, ${shlibs:Depends}
> +Depends: postgresql-9.5, repmgr-common (>= ${source:Version}), 
> ${misc:Depends}, ${shlibs:Depends}
>  Suggests: rsync
> -Description: replication manager for PostgreSQL 9.4
> +Description: replication manager for PostgreSQL 9.5
>   Since version 9.0, PostgreSQL allow you to have replicated hot
>   standby servers which you can query and/or use for high availability.
>   While the main components of the feature are included with
> @@ -82,15 +82,15 @@
>   repmgr allows you to monitor and manage your replicated PostgreSQL
>   databases as a single cluster.
>   .
> - This package contains repmgr for PostgreSQL 9.4.
> + This package contains repmgr for PostgreSQL 9.5.
>  
> -Package: postgresql-9.4-repmgr-dbg
> +Package: postgresql-9.5-repmgr-dbg
>  Section: debug
>  Architecture: any
> -Depends: postgresql-9.4-repmgr (= ${binary:Version}), ${misc:Depends}, 
> ${shlibs:Depends}
> +Depends: postgresql-9.5-repmgr (= ${binary:Version}), ${misc:Depends}, 
> ${shlibs:Depends}
>  Replaces: repmgr-dbg (<< 3.0.1-1)
>  Breaks: repmgr-dbg (<< 3.0.1-1)
> -Description: debug symbols for repmgr for PostgreSQL 9.4
> +Description: debug symbols for repmgr for PostgreSQL 9.5
>   Since version 9.0, PostgreSQL allow you to have replicated hot
>   standby servers which you can query and/or use for high availability.
>   While the main components of the feature are included with
> @@ -100,5 +100,5 @@
>   repmgr allows you to monitor and manage your replicated PostgreSQL
>   databases as a single cluster.
>   .
> - This package contains debug symbols for repmgr for PostgreSQL 9.4.
> + This package contains debug symbols for repmgr for PostgreSQL 9.5.
>  
> Error: debian/control needs updating from debian/control.in. Run 'pg_buildext 
> updatecontrol'.
> If you are seeing this message in a buildd log, a sourceful upload is 
> required.
> /usr/share/postgresql-common/pgxs_debian_control.mk:9: recipe for target 
> 'debian/control' failed
> make: *** [debian/control] Error 1
> dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise



Processed: Still there in -6

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 809580
Bug #809580 {Done: Alastair McKinstry } [src:libdap] 
libdap: FTBFS without networking: getdap tests fail
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions libdap/3.15.1-6.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
809580: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809580
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#809580: Still there in -6

2016-01-15 Thread Martin Michlmayr
reopen 809580
thanks

I still see this with -6:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> Package: libdap
> Version: 3.15.1-6
...
> FAIL: HTTPConnectTest

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise



Bug#809053: xindy FTBFS due to CPPFLAGS containing spaces

2016-01-15 Thread Norbert Preining
Hi

thanks for your feedback.

> > >  * debian/gbp.conf: Should it be in the sources?
> 
> Sorry, I did not explain myself well. I wondered if this should be something
> associated to the local git repo or something to be committed to the public

I prefer having gbp.conf in the git repoand debian package. The buildarea
directive is not important, but the pristinetar.

I will anyway switch to add pristinetar data for the new releases.

> Just noticed yet another minor issue, Vcs-Git and Vcs-Browser still point to
> Joerg Sommer's old git repo. This should probably point to new git repo

Indeed, thanks, well spotted!

Norbert


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




Bug#808067: belle-sip: switch from polarssl to mbedtls

2016-01-15 Thread James Cowgill
Control: tags -1 pending patch

Hi,

I intend to NMU this package with the attached patch in a few days to
fix this bug. Please tell me if you don't want me to.

The patch is a stripped down version of the work I did earlier (link in
previous messages in this bugreport). Upstream is working on their own
version but it isn't ready yet.

Thanks,
Jamesdiff -Nru belle-sip-1.4.1/debian/changelog belle-sip-1.4.1/debian/changelog
--- belle-sip-1.4.1/debian/changelog	2015-05-23 13:45:08.0 +0100
+++ belle-sip-1.4.1/debian/changelog	2016-01-15 23:59:32.0 +
@@ -1,3 +1,13 @@
+belle-sip (1.4.1-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS with GCC 6.
+  * Port to mbedTLS since PolarSSL is going away. (Closes: #808067)
+- Add --disable-strict to configure invocation to prevent -Werror from
+  failing the build (warning is about polarssl compat layer deprecation).
+
+ -- James Cowgill   Fri, 15 Jan 2016 23:59:29 +
+
 belle-sip (1.4.1-1) unstable; urgency=medium
 
   [ Felix Lechner ]
diff -Nru belle-sip-1.4.1/debian/control belle-sip-1.4.1/debian/control
--- belle-sip-1.4.1/debian/control	2015-05-23 13:41:05.0 +0100
+++ belle-sip-1.4.1/debian/control	2016-01-15 22:55:50.0 +
@@ -6,7 +6,7 @@
 Build-Depends: debhelper (>= 9), dh-autoreconf, autotools-dev, quilt,
  pkg-config, intltool,
  libcunit1-ncurses-dev,
- libantlr3c-dev, antlr3, libpolarssl-dev
+ libantlr3c-dev, antlr3, libmbedtls-dev
 Standards-Version: 3.9.6
 Homepage: http://www.linphone.org
 Vcs-Browser: https://github.com/BelledonneCommunications/belle-sip
diff -Nru belle-sip-1.4.1/debian/patches/0001-Fix-FTBFS-with-GCC-6-typo-in-belle_sip_uri_equals.patch belle-sip-1.4.1/debian/patches/0001-Fix-FTBFS-with-GCC-6-typo-in-belle_sip_uri_equals.patch
--- belle-sip-1.4.1/debian/patches/0001-Fix-FTBFS-with-GCC-6-typo-in-belle_sip_uri_equals.patch	1970-01-01 01:00:00.0 +0100
+++ belle-sip-1.4.1/debian/patches/0001-Fix-FTBFS-with-GCC-6-typo-in-belle_sip_uri_equals.patch	2016-01-15 22:49:47.0 +
@@ -0,0 +1,25 @@
+From 997382640eae6067b090c2afad49a4a018c01ecb Mon Sep 17 00:00:00 2001
+From: James Cowgill 
+Date: Fri, 15 Jan 2016 22:00:49 +
+Subject: [PATCH 1/2] Fix FTBFS with GCC 6 - typo in belle_sip_uri_equals
+
+---
+ src/belle_sip_uri_impl.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/belle_sip_uri_impl.c b/src/belle_sip_uri_impl.c
+index 4d1a4bd..0c613c5 100644
+--- a/src/belle_sip_uri_impl.c
 b/src/belle_sip_uri_impl.c
+@@ -301,7 +301,7 @@ int belle_sip_uri_equals(const belle_sip_uri_t* uri_a,const belle_sip_uri_t* uri
+ */
+ 	if (uri_a->user && uri_b->user) {
+ 		if (IS_EQUAL(uri_a->user,uri_b->user)) return 0;
+-	} else if (uri_a->user != uri_a->user) {
++	} else if (uri_a->user != uri_b->user) {
+ 		return 0;
+ 	}
+ /*
+-- 
+2.7.0.rc3
+
diff -Nru belle-sip-1.4.1/debian/patches/0002-Port-to-mbedTLS.patch belle-sip-1.4.1/debian/patches/0002-Port-to-mbedTLS.patch
--- belle-sip-1.4.1/debian/patches/0002-Port-to-mbedTLS.patch	1970-01-01 01:00:00.0 +0100
+++ belle-sip-1.4.1/debian/patches/0002-Port-to-mbedTLS.patch	2016-01-15 22:49:47.0 +
@@ -0,0 +1,730 @@
+From 48d5decbc9cad97cd72d44cff56c8e66f1cc6907 Mon Sep 17 00:00:00 2001
+From: James Cowgill 
+Date: Sun, 6 Dec 2015 17:11:36 +
+Subject: [PATCH 2/2] Port to mbedTLS
+
+---
+ configure.ac |  52 ++
+ src/http-provider.c  |   2 +-
+ src/transports/tls_channel_polarssl.c| 265 +++
+ src/transports/tls_listeningpoint_polarssl.c |  24 ---
+ tester/auth_helper_tester.c  |  16 +-
+ 5 files changed, 91 insertions(+), 268 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 3ddc3ba..8f26804 100755
+--- a/configure.ac
 b/configure.ac
+@@ -235,52 +235,36 @@ AC_ARG_ENABLE(	tls,
+ 		*) AC_MSG_ERROR(bad value ${enableval} for --enable-tls) ;;
+ 		esac],[use_tls=true])
+ 
+-AC_ARG_WITH( polarssl,
+-  [  --with-polarssl  Set prefix where polarssl can be found (ex:/usr, /usr/local)[default=PREFIX] ],
+-  [ polarssl_prefix=${withval}],[ polarssl_prefix=${prefix} ])
++AC_ARG_WITH( mbedtls,
++  [  --with-mbedtls  Set prefix where mbedTLS can be found (ex:/usr, /usr/local)[default=PREFIX] ],
++  [ mbedtls_prefix=${withval}],[ mbedtls_prefix=${prefix} ])
+ 
+-if test "$polarssl_prefix" != "NONE" && test "$polarssl_prefix" != "/usr"; then
+-	POLARSSL_CFLAGS="-I${polarssl_prefix}/include"
+-	POLARSSL_LIBS="-L${polarssl_prefix}/lib"
++if test "$mbedtls_prefix" != "NONE" && test "$mbedtls_prefix" != "/usr"; then
++	MBEDTLS_CFLAGS="-I${mbedtls_prefix}/include"
++	MBEDTLS_LIBS="-L${mbedtls_prefix}/lib"
+ fi
+ 
+-POLARSSL_LIBS="$POLARSSL_LIBS -lpolarssl"
+-found_polarssl=no
++found_mbedtls=no
+ 
+ if test "$use_tls" = "true" ; then
+-	CPPFLAGS_save=$CPPFLAGS
+ 	LIBS_save=$LIBS
+ 
+-	CPPFLAGS="$CPPFLAGS $POLARSSL_CFLAGS"
+-	LIBS="$LIBS $POLARS

Processed: Bug#808067: belle-sip: switch from polarssl to mbedtls

2016-01-15 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 pending patch
Bug #808067 [src:belle-sip] belle-sip: switch from polarssl to mbedtls
Added tag(s) pending and patch.

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



Bug#811137: FTBFS: debian/control needs updating from debian/control.in

2016-01-15 Thread Martin Michlmayr
Package: pg-rage-terminator
Version: 0.1.4-1
Severity: serious

pg-rage-terminator fails to build in unstable:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> --- debian/control2015-04-22 12:26:34.0 +
> +++ debian/control.yKBsHP 2016-01-15 23:05:20.725077062 +
> @@ -10,13 +10,3 @@
>  Vcs-Git: https://github.com/disco-stu/pg_rage_terminator-pkg.git
>  Vcs-Browser: https://github.com/disco-stu/pg_rage_terminator-pkg
>  
> -Package: pg-rage-terminator-9.4
> -Architecture: any
> -Depends:
> - ${shlibs:Depends},
> - ${misc:Depends},
> - postgresql-9.4
> -Description: PostgreSQL background worker that kill random sessions.
> - pg-rage-terminator is a custom background worker wich is able to kill random
> - PostgreSQL backends.
> -
> Error: debian/control needs updating from debian/control.in. Run 'pg_buildext 
> updatecontrol'.
> If you are seeing this message in a buildd log, a sourceful upload is 
> required.
> /usr/share/postgresql-common/pgxs_debian_control.mk:9: recipe for target 
> 'debian/control' failed
> make: *** [debian/control] Error 1
> dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2
> 

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise



Bug#811138: FTBFS: debian/control needs updating from debian/control.in

2016-01-15 Thread Martin Michlmayr
Package: pg-partman
Version: 2.2.2-1
Severity: serious

pg-partman fails to build in unstable:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
>  fakeroot debian/rules clean
> pg_buildext checkcontrol
> --- debian/control2015-12-31 12:25:49.0 +
> +++ debian/control.8goaVz 2016-01-15 23:02:35.577075720 +
> @@ -9,9 +9,9 @@
>  Vcs-Git: https://anonscm.debian.org/git/pkg-postgresql/pg-partman.git
>  XS-Testsuite: autopkgtest
>  
> -Package: postgresql-9.4-partman
> +Package: postgresql-9.5-partman
>  Architecture: any
> -Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-9.4, python
> +Depends: ${misc:Depends}, ${shlibs:Depends}, postgresql-9.5, python
>  Description: PostgreSQL Partition Manager
>   pg_partman is a PostgreSQL extension to create and manage both time-based 
> and
>   serial-based table partition sets. Sub-partitioning is also supported. Child
> Error: debian/control needs updating from debian/control.in. Run 'pg_buildext 
> updatecontrol'.
> If you are seeing this message in a buildd log, a sourceful upload is 
> required.
> /usr/share/postgresql-common/pgxs_debian_control.mk:9: recipe for target 
> 'debian/control' failed
> make: *** [debian/control] Error 1
> dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise



Processed: fix severity

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 811134 serious
Bug #811134 [pgfincore] FTBFS: debian/control needs updating from 
debian/control.in
Severity set to 'serious' from 'normal'
> --
Stopping processing here.

Please contact me if you need assistance.
-- 
811134: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811134
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#811136: FTBFS: debian/control needs updating from debian/control.in

2016-01-15 Thread Martin Michlmayr
Package: pg-reorg
Version: 1.1.11-1
Severity: serious

pg-reorg fails to build in unstable:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
>  fakeroot debian/rules clean
> pg_buildext checkcontrol
> --- debian/control2015-01-08 14:14:38.0 +
> +++ debian/control.wMSs2S 2016-01-15 23:07:52.281078294 +
> @@ -10,14 +10,14 @@
>  Vcs-Git: git://anonscm.debian.org/pkg-postgresql/pg-reorg.git
>  XS-Testsuite: autopkgtest
>  
> -Package: postgresql-9.4-reorg
> +Package: postgresql-9.5-reorg
>  Architecture: any
> -Depends: postgresql-9.4, ${shlibs:Depends}, ${misc:Depends}
> +Depends: postgresql-9.5, ${shlibs:Depends}, ${misc:Depends}
>  Description: reorganize tables in PostgreSQL databases without any locks
>   pg_reorg is an utility program to reorganize tables in PostgreSQL databases.
>   Unlike clusterdb, it doesn't block any selections and updates during
>   reorganization.
>   .
>   This package contains the pg_reorg program and the server extension for
> - PostgreSQL 9.4.
> + PostgreSQL 9.5.
>  
> Error: debian/control needs updating from debian/control.in. Run 'pg_buildext 
> updatecontrol'.
> If you are seeing this message in a buildd log, a sourceful upload is 
> required.
> /usr/share/postgresql-common/pgxs_debian_control.mk:9: recipe for target 
> 'debian/control' failed

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise



Bug#790535: fixed in sus 7.20160107

2016-01-15 Thread Andreas Beckmann
On 2016-01-08 12:17, Andreas Beckmann wrote:
> Hi David,
> 
> please fix this for jessie, too.

I just went ahead, filed a jessie-pu request which was prompty granted
and uploaded the package for inclusion in the upcoming point release.


Andreas



Bug#811135: FTBFS: debian/control needs updating from debian/control.in

2016-01-15 Thread Martin Michlmayr
Package: pgextwlist
Version: 1.3-3
Severity: serious

pgextwlist fails to build in unstable:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> pg_buildext checkcontrol
> --- debian/control2014-07-27 09:13:41.0 +
> +++ debian/control.Mj7Bgx 2016-01-15 23:46:25.581097091 +
> @@ -10,10 +10,10 @@
>  Vcs-Browser: https://github.com/dimitri/pgextwlist
>  XS-Testsuite: autopkgtest
>  
> -Package: postgresql-9.4-pgextwlist
> +Package: postgresql-9.5-pgextwlist
>  Section: libs
>  Architecture: any
> -Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-9.4
> +Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-9.5
>  Description: PostgreSQL Extension Whitelisting
>   This extension implements extension whitelisting, and will actively prevent
>   users from installing extensions not in the provided list. Also, this
> Error: debian/control needs updating from debian/control.in. Run 'pg_buildext 
> updatecontrol'.
> If you are seeing this message in a buildd log, a sourceful upload is 
> required.
> /usr/share/postgresql-common/pgxs_debian_control.mk:9: recipe for target 
> 'debian/control' failed

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise



Bug#810530: marked as done (subdownloader: Subdownloader does not download subtitles anymore)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Sat, 16 Jan 2016 00:04:41 +
with message-id 
and subject line Bug#810530: fixed in subdownloader 2.0.18-2
has caused the Debian Bug report #810530,
regarding subdownloader: Subdownloader does not download subtitles anymore
to be marked as done.

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

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


-- 
810530: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810530
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: subdownloader
Version: 2.0.18-1
Severity: important

Dear Maintainer,

in Dezember 2015 opensubtitles.org changed their API slightly, so SubDownloader
is not working anymore. On download subtitle program reports "It's not
possible".

The bug is known by upstream and patch is already available here:
https://bugs.launchpad.net/subdownloader/+bug/1528605



-- 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 4.3.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)

Versions of packages subdownloader depends on:
ii  python   2.7.11-1
ii  python-crypto2.6.1-6
ii  python-kaa-metadata  0.7.7+svn4596-4
pn  python:any   

Versions of packages subdownloader recommends:
ii  python-qt4  4.11.4+dfsg-1+b2

subdownloader suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: subdownloader
Source-Version: 2.0.18-2

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

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

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

Debian distribution maintenance software
pp.
Mattia Rizzolo  (supplier of updated subdownloader package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 15 Jan 2016 23:55:47 +
Source: subdownloader
Binary: subdownloader
Architecture: source
Version: 2.0.18-2
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 

Changed-By: Mattia Rizzolo 
Description:
 subdownloader - subtitle download/upload manager for video files
Closes: 767036 810530
Changes:
 subdownloader (2.0.18-2) unstable; urgency=medium
 .
   * Team upload
 .
   [ Emilien Klein ]
   * d/patches/load-translations.patch: Corrects Debian's program folder to
   load the translations correctly (Closes: #767036).
 .
   [ Mattia Rizzolo ]
   * Make subdownloader download subtitles again after opensubtitles.org
 API change.  Closes: #810530  LP: #1528605
Checksums-Sha1:
 1cf779d881a74c3186f0026164f6e4dea0fb89c0 2075 subdownloader_2.0.18-2.dsc
 970eed1a43777f9aa543e193861bfb9d41202e05 26188 
subdownloader_2.0.18-2.debian.tar.xz
Checksums-Sha256:
 21ee87a99aacea6168bef2d05da7480313b8b62b4c08eee572f098ae68acef3f 2075 
subdownloader_2.0.18-2.dsc
 bba8bdb7b6a316bd20298c95ba0e1bb138e7c8b50c3fb23b4d5b1c80d906a55e 26188 
subdownloader_2.0.18-2.debian.tar.xz
Files:
 9cccb777a65a445abf5133899b0170b3 2075 utils optional subdownloader_2.0.18-2.dsc
 a71b54d7244221a5864e0135b72e1797 26188 utils optional 
subdownloader_2.0.18-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWmYdVAAoJEEsEP825REVAUh4P/0DUqOJjIQoZxx1Cc5ZAwa3X
5JcJTe7yCsHvVkrkr295K2FgPljimutQZCNax7ulOTu9cL+VgjDuzuiNVel+zEqr
TqUDq46xeswKR3FjVS40vgHRKLykVUzPyXcyHeC74nUtQE7P8gFzJfeE5QrHYo91
dG6mgw9elKCZZDj1CjTREf2rvQ49dv6TYGyyHHx/mxi46P00Mpv2Ykr+ZYeHIfL5
j6SMjdwv47yvc7zWpKiWQH/XvZJiy+u68qmni2pBnDHjuumCRYZ6ijnWFdRxDACt
snTnyHIByfFg+wSOd+uH/xHJvXpNO0Q8+lNdSGNAGfAD1hajOOMDOVuYfP9HbyKm
aGaRAewPZOtPu9VJgwvrqso9KBogmkgsTZS8PvoLFRAktHcFIRxamwMc/dGeOvuX
ZmAUMpg45DYDM8HaI94WVGG3CxYCawYKIOuCWkFwHBn72kO3UnmkS3nIz5SrTpdv
+v159NXfwbmFyWLxtQ9Xf94fv5Q9Asok0Bs2nayGOm44nA3/INALdpa8zdnAI5xB
Izs4fiV8kNoPmoZ4P1SuxBbUT1T1SW0ANjuWkDjARA0Rg1c4QEHf2xPArREVv6ks
+5M5KM0xWMpw9tNvoibNTUhVcZ/KlrYYaZW2Br8xCqwRkGD3ycjVvmD47ojLPBxH
Xdpo+NLrUwzY7qQuX5h+
=kzSD
-END PGP SIGNATURE End Message ---


Processed: your mail

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 810530 + pending
Bug #810530 [subdownloader] subdownloader: Subdownloader does not download 
subtitles anymore
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
810530: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810530
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#808059: gatling: switch from polarssl to mbedtls

2016-01-15 Thread James Cowgill
Control: found -1 0.13-5
Control: tags -1 pending

Hi,

I intend to NMU this package with the attached patch in a few days to
fix this bug. The main content of the patch is the same as the patch I
originally sent. Please tell me if you don't want me to.

Thanks,
Jamesdiff -Nru gatling-0.13/debian/changelog gatling-0.13/debian/changelog
--- gatling-0.13/debian/changelog	2013-11-04 20:31:30.0 +
+++ gatling-0.13/debian/changelog	2016-01-15 23:32:39.0 +
@@ -1,3 +1,10 @@
+gatling (0.13-5.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Switch from PolarSSL to mbedTLS. (Closes: #808059)
+
+ -- James Cowgill   Fri, 15 Jan 2016 23:32:12 +
+
 gatling (0.13-5) unstable; urgency=low
 
   * Fix FTBFS by adjusting to new polarssl API (Closes: #728625)
diff -Nru gatling-0.13/debian/control gatling-0.13/debian/control
--- gatling-0.13/debian/control	2013-05-09 14:52:50.0 +0100
+++ gatling-0.13/debian/control	2015-11-20 02:20:32.0 +
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Vedran Furač 
 Uploaders: Roland Stigge 
-Build-Depends: debhelper (>= 9), libowfat-dev (>= 0.29-2), procps, zlib1g-dev, libssl-dev, libpolarssl-dev (>= 1.2.0)
+Build-Depends: debhelper (>= 9), libowfat-dev (>= 0.29-2), procps, zlib1g-dev, libssl-dev, libmbedtls-dev
 Standards-Version: 3.9.4
 Homepage: http://www.fefe.de/gatling/
 
diff -Nru gatling-0.13/debian/patches/10-mbedtls.patch gatling-0.13/debian/patches/10-mbedtls.patch
--- gatling-0.13/debian/patches/10-mbedtls.patch	1970-01-01 01:00:00.0 +0100
+++ gatling-0.13/debian/patches/10-mbedtls.patch	2015-12-15 16:26:36.0 +
@@ -0,0 +1,401 @@
+Description: Switch from polarssl to mbedtls
+Author: James Cowgill 
+Forwarded: no
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/GNUmakefile
 b/GNUmakefile
+@@ -84,10 +84,10 @@ tlsgatling_nofail: gatling.c ssl.o $(HTT
+ 	-$(CC) -o tlsgatling gatling.c ssl.o $(HTTPS_OBJS) $(CFLAGS) -DSUPPORT_HTTPS $(LDFLAGS) -lssl -lcrypto $(LDLIBS)
+ 
+ ptlsgatling: gatling.c pssl.o $(PHTTPS_OBJS) libsocket libiconv libcrypt
+-	$(CC) -o $@ gatling.c pssl.c $(PHTTPS_OBJS) $(CFLAGS) -DSUPPORT_HTTPS -DUSE_POLARSSL $(LDFLAGS) -lpolarssl $(LDLIBS)
++	$(CC) -o $@ gatling.c pssl.c $(PHTTPS_OBJS) $(CFLAGS) -DSUPPORT_HTTPS -DUSE_MBEDTLS $(LDFLAGS) -lmbedcrypto -lmbedx509 -lmbedtls $(LDLIBS)
+ 
+ ptlsgatling_nofail: gatling.c pssl.o $(PHTTPS_OBJS) libsocket libiconv libcrypt
+-	-$(CC) -o ptlsgatling gatling.c pssl.c $(PHTTPS_OBJS) $(CFLAGS) -DSUPPORT_HTTPS -DUSE_POLARSSL $(LDFLAGS) -lpolarssl $(LDLIBS)
++	-$(CC) -o ptlsgatling gatling.c pssl.c $(PHTTPS_OBJS) $(CFLAGS) -DSUPPORT_HTTPS -DUSE_MBEDTLS $(LDFLAGS) -lmbedcrypto -lmbedx509 -lmbedtls $(LDLIBS)
+ 
+ gatling: gatling.o $(OBJS) md5lib
+ 	$(CC) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LDLIBS) `cat md5lib`
+@@ -113,7 +113,7 @@ https.o: http.c
+ 	$(CC) -c $< -o $@ -I. $(CFLAGS) -DSUPPORT_HTTPS
+ 
+ phttps.o: http.c
+-	$(CC) -c $< -o $@ -I. $(CFLAGS) -DSUPPORT_HTTPS -DUSE_POLARSSL
++	$(CC) -c $< -o $@ -I. $(CFLAGS) -DSUPPORT_HTTPS -DUSE_MBEDTLS
+ 
+ %: %.o
+ 	$(CC) $(LDFLAGS) $@.o -o $@ $(LDLIBS)
+--- a/gatling.c
 b/gatling.c
+@@ -259,8 +259,8 @@ void cleanup(int64 fd) {
+ #ifdef USE_OPENSSL
+ if (h->ssl) SSL_free(h->ssl);
+ #endif
+-#ifdef USE_POLARSSL
+-ssl_free(&h->ssl);
++#ifdef USE_MBEDTLS
++mbedtls_ssl_free(&h->ssl);
+ #endif
+ #endif
+ #ifdef SUPPORT_SMB
+@@ -707,11 +707,7 @@ static void accept_server_connection(int
+ #else
+ 	  fchdir(origdir);
+ #endif
+-#ifdef USE_OPENSSL
+ 	  if (init_serverside_tls(&h->ssl,n))
+-#elif defined(USE_POLARSSL)
+-	  if (init_serverside_tls(&h->ssl,&h->ssn,n))
+-#endif
+ 	  {
+ 	if (logging) {
+ 	  char a[FMT_ULONG];
+@@ -789,22 +785,22 @@ int handle_ssl_error_code(int sock,int c
+ io_wantwrite(sock);
+ io_dontwantread(sock);
+ return 0;
+-#elif defined(USE_POLARSSL)
+-  case POLARSSL_ERR_NET_WANT_READ:
++#elif defined(USE_MBEDTLS)
++  case MBEDTLS_ERR_SSL_WANT_READ:
+ io_wantread(sock);
+ io_dontwantwrite(sock);
+ return 0;
+-  case POLARSSL_ERR_NET_WANT_WRITE:
++  case MBEDTLS_ERR_SSL_WANT_WRITE:
+ io_wantwrite(sock);
+ io_dontwantread(sock);
+ return 0;
+ #endif
+ #ifdef USE_OPENSSL
+   case SSL_ERROR_SYSCALL:
+-#elif defined(USE_POLARSSL)
+-  case POLARSSL_ERR_NET_RECV_FAILED:
+-  case POLARSSL_ERR_NET_SEND_FAILED:
+-  case POLARSSL_ERR_NET_CONN_RESET:
++#elif defined(USE_MBEDTLS)
++  case MBEDTLS_ERR_NET_RECV_FAILED:
++  case MBEDTLS_ERR_NET_SEND_FAILED:
++  case MBEDTLS_ERR_NET_CONN_RESET:
+ errno=ECONNRESET;
+ #endif
+ // we already signal the error up and upsteam will then write an
+@@ -870,8 +866,8 @@ void do_sslaccept(int sock,struct http_d
+   r=SSL_get_error(h->ssl,SSL_accept(h->ssl));
+ //  printf("do_sslaccept -> %d\n",r);
+   if (r==SSL_ERROR_NONE)
+-#elif defined(USE_POLARSSL)
+-  r=ssl_handshake(&h->ssl);
++#elif defined(USE_MBEDTLS)
++  r=mbedtls_ssl_handshake(&h->ssl);
+   if (r==0)
+ #endif
+   

Processed: Bug#808066: bzrtp: switch from polarssl to mbedtls

2016-01-15 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 pending
Bug #808066 [src:bzrtp] bzrtp: switch from polarssl to mbedtls
Added tag(s) pending.

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



Processed: Bug#808059: gatling: switch from polarssl to mbedtls

2016-01-15 Thread Debian Bug Tracking System
Processing control commands:

> found -1 0.13-5
Bug #808059 [src:gatling] gatling: switch from polarssl to mbedtls
Marked as found in versions gatling/0.13-5.
> tags -1 pending
Bug #808059 [src:gatling] gatling: switch from polarssl to mbedtls
Added tag(s) pending.

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



Bug#808066: bzrtp: switch from polarssl to mbedtls

2016-01-15 Thread James Cowgill
Control: tags -1 pending

Hi,

I intend to NMU this package with the patch I sent earlier in the
bugreport (bzrtp_1.0.2-1.1-nmu.diff) in a few days. Please tell me if
you don't want me to.

Thanks,
James

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


Bug#793314: marked as done (handlersocket: update to mysql-5.6)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 22:13:54 +
with message-id 
and subject line Bug#810991: Removed package(s) from unstable
has caused the Debian Bug report #793314,
regarding handlersocket: update to mysql-5.6
to be marked as done.

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

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


-- 
793314: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=793314
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: handlersocket
Version: 1.1.0-7-g1044a28-2
Severity: serious

handlersocket needs to switch from mysql-5.5 to mysql-5.6.


Andreas
--- End Message ---
--- Begin Message ---
Version: 1.1.0-7-g1044a28-2+rm

Dear submitter,

as the package handlersocket has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/810991

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#752353: marked as done (pilot-manager: uninstallable: libpda-pilot-perl is gone)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 22:12:19 +
with message-id 
and subject line Bug#810962: Removed package(s) from unstable
has caused the Debian Bug report #752353,
regarding pilot-manager: uninstallable: libpda-pilot-perl is gone
to be marked as done.

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

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


-- 
752353: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752353
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: syncbbdb
Version: 2.6-2
Severity: grave
Tags: sid
X-Debbugs-Cc: pilot-l...@packages.debian.org

The syncbbdb and pilot-manager packages are no longer installable on
current sid:

The following packages have unmet dependencies:
 syncbbdb : Depends: pilot-manager (>= 1.107-3) but it is not going to be 
installed
Depends: pilot-link-perl but it is not installable or
 libpda-pilot-perl but it is not installable
Recommends: bbdb

 pilot-manager : Depends: pilot-link-perl but it is not installable or
  libpda-pilot-perl but it is not installable
 Recommends: pilot-link but it is not going to be installed

This is because pilot-link recently dropped the libpda-pilot-perl package:

Changes:
 pilot-link (0.12.5-dfsg-1) unstable; urgency=medium
 .
 [...]
   * remove libpda-pilot-perl package as it does not build anymore

Cc'ing the pilot-link maintainer. I don't see a bug about the
build issue, but I suppose the debian-perl list could try to
help if you like.
-- 
Niko Tyni   nt...@debian.org
--- End Message ---
--- Begin Message ---
Version: 1.107.0pre108-5+rm

Dear submitter,

as the package pilot-manager has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/810962

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#804558: tweepy: FTBFS: ImportError: No module named {unittest2,vcr}

2016-01-15 Thread Petter Reinholdtsen
Hi.  Is this issue being worked on or not?  The BTS report was a bit
unclear to me there.  What exactly should be done to fix it?  Why did it
surface in the first place?

This issue is threatening to cause my package creepy to be removed
from testing 2016-02-07, and I hope this can be avoided.

-- 
Happy hacking
Petter Reinholdtsen



Bug#741935: marked as done (Is the avbin package still being maintained?)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 22:06:39 +
with message-id 
and subject line Bug#810706: Removed package(s) from unstable
has caused the Debian Bug report #741935,
regarding Is the avbin package still being maintained?
to be marked as done.

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

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


-- 
741935: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741935
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: avbin
Severity: serious

Hi,

I'm wondering if this package is still actively maintained? I cannot
help but noticing that the debian avbin package lacks several upstream
versions behind, and has seen its latest maintainer upload almost 5
years ago.

If the current maintainers think it would be best to let this package
go, then I'd suggest to reassign this bug against ftp.debian.org and
ask for its removal. Otherwise, I'd suggest to close this bug by
uploading a new upstream version (and consider orphaning this
package).

In any case, I'd suggest to remove avbin from testing for the time
being to not hold up the libav10 transition further, which is file I
file this bug with severity "serious".

-- 
regards,
Reinhard
--- End Message ---
--- Begin Message ---
Version: 7-5+rm

Dear submitter,

as the package avbin has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/810706

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)--- End Message ---


Bug#810260: marked as done (backward-incompatible API change in getdns 0.9.0)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 22:04:40 +
with message-id 
and subject line Bug#810260: fixed in python-getdns 0.5.0-2
has caused the Debian Bug report #810260,
regarding backward-incompatible API change in getdns 0.9.0
to be marked as done.

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

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


-- 
810260: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810260
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: python-getdns
Version: 0.5.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

python-getdns fails to build from source in unstable/amd64:

  [..]

 debian/rules override_dh_auto_build
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160107183847.CqL8VbfjsW/python-getdns-0.5.0'
  dh_auto_build -a
  I: pybuild base:184: /usr/bin/python setup.py build 
  running build
  running build_ext
  building 'getdns' extension
  creating build
  creating build/temp.linux-x86_64-2.7
  x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall 
-Wstrict-prototypes -fno-strict-aliasing -g -O2 -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC 
-I/usr/include/python2.7 -c getdns.c -o build/temp.linux-x86_64-2.7/getdns.o -g
  x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall 
-Wstrict-prototypes -fno-strict-aliasing -g -O2 -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC 
-I/usr/include/python2.7 -c pygetdns_util.c -o 
build/temp.linux-x86_64-2.7/pygetdns_util.o -g
  x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall 
-Wstrict-prototypes -fno-strict-aliasing -g -O2 -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC 
-I/usr/include/python2.7 -c context.c -o build/temp.linux-x86_64-2.7/context.o 
-g
  context.c: In function ‘context_set_dns_transport_list’:
  context.c:878:68: error: ‘GETDNS_TRANSPORT_STARTTLS’ undeclared (first 
use in this function)
   if ((transport < GETDNS_TRANSPORT_UDP) || (transport > 
GETDNS_TRANSPORT_STARTTLS))  {
  ^
  context.c:878:68: note: each undeclared identifier is reported only once for 
each function it appears in
  error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
  E: pybuild pybuild:274: build: plugin distutils failed with: exit code=1: 
/usr/bin/python setup.py build 
  dh_auto_build: pybuild --build -i python{version} -p 2.7 --dir . returned 
exit code 13
  debian/rules:9: recipe for target 'override_dh_auto_build' failed
  make[1]: *** [override_dh_auto_build] Error 25
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160107183847.CqL8VbfjsW/python-getdns-0.5.0'
  debian/rules:6: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


python-getdns.0.5.0-1.unstable.amd64.log.txt.gz
Description: Binary data
--- End Message ---
--- Begin Message ---
Source: python-getdns
Source-Version: 0.5.0-2

We believe that the bug you reported is fixed in the latest version of
python-getdns, which is due to be installed in the Debian FTP archive.

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

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

Debian distribution maintenance software
pp.
Scott Kitterman  (supplier of updated python-getdns 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 15 Jan 2016 15:22:12 -0500
Source: python-getdns
Binary: python-getdns python3-getdns python-getdns-doc
Architecture: source amd64 all
Version: 0.5.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Scott Kitterman 
Description:
 python-getdns - modern asynchronous DNS API (python bindings)
 python-getdns-doc - modern asynchronous DNS API (documentation)
 python3-getdns - modern asynchronous DNS API (python 3 bindings)
Closes: 810260
Changes:
 python-getdns (0.5.0-2) unst

Bug#811052: marked as done (FTBFS: Attempt to store .auto/config.guess, which looks like a VCS file)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 21:52:06 +
with message-id 
and subject line Bug#811052: fixed in debhelper 9.20160115
has caused the Debian Bug report #811052,
regarding FTBFS: Attempt to store .auto/config.guess, which looks like a VCS 
file
to be marked as done.

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

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


-- 
811052: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811052
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libdvbpsi
Version: 1.3.0-4
Severity: serious

libdvbpsi fails to build with the new debhelper:

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
>dh_update_autotools_config -O--parallel
> dh_update_autotools_config: Attempt to store .auto/config.guess, which looks 
> like a VCS file or
> dh_update_autotools_config: a hidden package file (like quilt's ".pc" 
> directory
> dh_update_autotools_config: This tool probably contains a bug.
> debian/rules:4: recipe for target 'build' failed
> make: *** [build] Error 2
> dpkg-buildpackage: error: debian/rules build gave error exit status 2

I'm not sure what this tool refers to.

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise
--- End Message ---
--- Begin Message ---
Source: debhelper
Source-Version: 9.20160115

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

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

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

Debian distribution maintenance software
pp.
Niels Thykier  (supplier of updated debhelper package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 15 Jan 2016 20:28:37 +
Source: debhelper
Binary: debhelper
Architecture: source
Version: 9.20160115
Distribution: unstable
Urgency: medium
Maintainer: Debhelper Maintainers 
Changed-By: Niels Thykier 
Description:
 debhelper  - helper programs for debian/rules
Closes: 811038 811052
Changes:
 debhelper (9.20160115) unstable; urgency=medium
 .
   * Fix brown paper bag bug that caused many packages to
 FTBFS when dh_update_autotools_config was called.
 (Closes: #811052)
   * Revert removal of autoscripts/*-makeshlibs.  Some packages
 injected them directly into their maintainer scripts.
 (Closes: #811038)
Checksums-Sha1:
 5a3b702497d561296020e7933e202678733d813c 1703 debhelper_9.20160115.dsc
 31859b0465b1e9ada4a0bffb5b4f957fe180413f 334540 debhelper_9.20160115.tar.xz
Checksums-Sha256:
 4624faeb88c272edaba005587008427dde4aeda3e7535bc4d09831a9d8baa7aa 1703 
debhelper_9.20160115.dsc
 80f2c86caa5878bd41029f96c06ec709bc05fe6f83a366b74e14d4dd989f9302 334540 
debhelper_9.20160115.tar.xz
Files:
 6e941d91d8f7082b704193cdc9a18046 1703 devel optional debhelper_9.20160115.dsc
 47d6e8e12aaf1961779f17e658c212ee 334540 devel optional 
debhelper_9.20160115.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWmVdPAAoJEAVLu599gGRCUI0QAIwF33p9O7xxhIVn7WxvSavv
+i6AfRZinoFheyn34P21TZw7bY4LBvSO56E+KhEDum5jZh61RX+xrEp2g4tisKqH
4YUPnlBbZ8Ok8vKUEQhjDP8BkKI0wYptCOpzZnq5b7pyx/0PoMbriOwvshbakk2v
Yt8vNgyktfuigOPrUUChpKOJ032sWMfCednQ658yxxC0UNWOX/iUvSEnsE9CduP7
UKKgVQZx2ABPQrofYwh+R+r5pyIOD0CbMqLijX+L1KcvXFIFO4nb2K1+hUpQQbqH
chSNTZsk2n6T44YMfBFC7tWgyJ94Joy3ZmPSWQ8dpl5vwKR5cRoCHWZLfxkIGlFk
jGCnFlZHGw0ybppPzy8KjXDXcV2LFbralltQOrA6JZowjb5za0QvjA6XyTYlVj7k
7LlcLgqpBHjV+JLc1jOV66GK0HEI5fdPro5QITdiogMekLtJLkW+EG9iLYFDZeUL
0oxNJGhwocis/wj7OFbl4f5pUny2X36D40b2FyxwxWTPxhAQiBuH5kbJMIWj355z
RvQ2QAEtgLV1BICCJV53CAD3BBdUZ5drg/UGzBggHkG4uzqEMHCxmbIGhGHqxHlO
s3ZKXxRACCLSKVDppyPwVDh9DhglHbO6DqaTEboKZquf1TbvByT8on9DHwux1hmn
dbi6+HpHVNKsj6oIE2XC
=XXuE
-END PGP SIGNATURE End Message ---


Bug#811038: marked as done (debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs removed)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 21:52:06 +
with message-id 
and subject line Bug#811038: fixed in debhelper 9.20160115
has caused the Debian Bug report #811038,
regarding debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs removed
to be marked as done.

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

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


-- 
811038: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811038
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: debhelper
Version: 9.20160114
Severity: serious
Control: affects -1 + src:nss src:nspr src:tcl8.4 src:tcl8.5 src:tcl8.6 
src:tk8.4 src:tk8.5 src:tk8.6
User: helm...@debian.org
Usertags: rebootstrap

Hi Niels,

The debhelper upload mentioned above removes
/usr/share/debhelper/autoscripts/postinst-makeshlibs which is explicitly
referred to by the nss packging. This causes nss to FTFBS. Here is a
FTCBFS log:

https://jenkins.debian.net/job/rebootstrap_ppc64el_gcc5_supported/72/consoleText

Here is the relevant nss code:

http://sources.debian.net/src/nss/2:3.21-1/debian/rules/#L182

I am assinging this bug to debhelper initially as the change in
debhelper caused the regression. A quick codesearch reveals more
packages likely affected:

https://codesearch.debian.net/results/%2Fusr%2Fshare%2Fdebhelper%2Fautoscripts%2F.*makeshlibs/page_0

The number of affected packages is also a good reason to put this bug to
debhelper initially. If you believe that those packages should be fixed
individually instead, please clone and reassign as necessary.

Helmut
--- End Message ---
--- Begin Message ---
Source: debhelper
Source-Version: 9.20160115

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

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

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

Debian distribution maintenance software
pp.
Niels Thykier  (supplier of updated debhelper package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 15 Jan 2016 20:28:37 +
Source: debhelper
Binary: debhelper
Architecture: source
Version: 9.20160115
Distribution: unstable
Urgency: medium
Maintainer: Debhelper Maintainers 
Changed-By: Niels Thykier 
Description:
 debhelper  - helper programs for debian/rules
Closes: 811038 811052
Changes:
 debhelper (9.20160115) unstable; urgency=medium
 .
   * Fix brown paper bag bug that caused many packages to
 FTBFS when dh_update_autotools_config was called.
 (Closes: #811052)
   * Revert removal of autoscripts/*-makeshlibs.  Some packages
 injected them directly into their maintainer scripts.
 (Closes: #811038)
Checksums-Sha1:
 5a3b702497d561296020e7933e202678733d813c 1703 debhelper_9.20160115.dsc
 31859b0465b1e9ada4a0bffb5b4f957fe180413f 334540 debhelper_9.20160115.tar.xz
Checksums-Sha256:
 4624faeb88c272edaba005587008427dde4aeda3e7535bc4d09831a9d8baa7aa 1703 
debhelper_9.20160115.dsc
 80f2c86caa5878bd41029f96c06ec709bc05fe6f83a366b74e14d4dd989f9302 334540 
debhelper_9.20160115.tar.xz
Files:
 6e941d91d8f7082b704193cdc9a18046 1703 devel optional debhelper_9.20160115.dsc
 47d6e8e12aaf1961779f17e658c212ee 334540 devel optional 
debhelper_9.20160115.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWmVdPAAoJEAVLu599gGRCUI0QAIwF33p9O7xxhIVn7WxvSavv
+i6AfRZinoFheyn34P21TZw7bY4LBvSO56E+KhEDum5jZh61RX+xrEp2g4tisKqH
4YUPnlBbZ8Ok8vKUEQhjDP8BkKI0wYptCOpzZnq5b7pyx/0PoMbriOwvshbakk2v
Yt8vNgyktfuigOPrUUChpKOJ032sWMfCednQ658yxxC0UNWOX/iUvSEnsE9CduP7
UKKgVQZx2ABPQrofYwh+R+r5pyIOD0CbMqLijX+L1KcvXFIFO4nb2K1+hUpQQbqH
chSNTZsk2n6T44YMfBFC7tWgyJ94Joy3ZmPSWQ8dpl5vwKR5cRoCHWZLfxkIGlFk
jGCnFlZHGw0ybppPzy8KjXDXcV2LFbralltQOrA6JZowjb5za0QvjA6XyTYlVj7k
7LlcLgqpBHjV+JLc1jOV66GK0HEI5fdPro5QITdiogMekLtJLkW+EG9iLYFDZeUL
0oxNJGhwocis/wj7OFbl4f5pUny2X36D40b2FyxwxWTPxhAQiBuH5kbJMIWj355z
RvQ2QAEtgLV1BICCJV53CAD3BBdUZ5drg/UGzBggHkG4uzqEMHCxmbIGhGHqxHlO
s3ZKXxRACCLSKVDppyPwVDh9DhglHbO6DqaTEboKZquf1TbvByT8on9DHwux1hmn
dbi6+HpHVNKsj6oIE2XC
=XXuE
-END PGP SIGNATURE End Message ---


Bug#809566: eclipse-mylyn: FTBFS: Unsatisfied import package javax.mail_0.0.0.

2016-01-15 Thread Emmanuel Bourg
This issue is similar to #808487. It's caused by incomplete OSGi
metadata in the axis, wsdl4j and javamail packages.



Processed: tagging 810260

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 810260 + pending
Bug #810260 [python-getdns] backward-incompatible API change in getdns 0.9.0
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
810260: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810260
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: limit source to debhelper, tagging 811038

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> limit source debhelper
Limiting to bugs with field 'source' containing at least one of 'debhelper'
Limit currently set to 'source':'debhelper'

> tags 811038 + pending
Bug #811038 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
811038: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811038
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: usertagging 811038, severity of 811038 is important, cloning 811038, severity of 811038 is serious ...

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> usertags 811038 ldconfig-trigger-migration
User is ni...@thykier.net
There were no usertags set.
Usertags are now: ldconfig-trigger-migration.
> severity 811038 important
Bug #811038 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Severity set to 'important' from 'serious'
> clone 811038 -1 -2 -3 -4 -5 -6 -7 -8
Bug #811038 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Bug 811038 cloned as bugs 87-811124
> severity 811038 serious
Bug #811038 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Severity set to 'serious' from 'important'
> usertags 811038 - ldconfig-trigger-migration
Usertags were: ldconfig-trigger-migration.
Usertags are now: .
> reassign -1 tk8.4
Bug #87 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Bug reassigned from package 'debhelper' to 'tk8.4'.
No longer marked as found in versions debhelper/9.20160114.
Ignoring request to alter fixed versions of bug #87 to the same values 
previously set
> retitle -1 tk8.4: Please activate the ldconfig trigger
Bug #87 [tk8.4] debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs 
removed
Changed Bug title to 'tk8.4: Please activate the ldconfig trigger' from 
'debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs removed'
> reassign -2 nspr
Bug #88 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Bug reassigned from package 'debhelper' to 'nspr'.
No longer marked as found in versions debhelper/9.20160114.
Ignoring request to alter fixed versions of bug #88 to the same values 
previously set
> retitle -2 nspr Please activate the ldconfig trigger
Bug #88 [nspr] debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs 
removed
Changed Bug title to 'nspr Please activate the ldconfig trigger' from 
'debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs removed'
> reassign -3 tk8.5
Bug #89 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Bug reassigned from package 'debhelper' to 'tk8.5'.
No longer marked as found in versions debhelper/9.20160114.
Ignoring request to alter fixed versions of bug #89 to the same values 
previously set
> retitle -3 tk8.5: Please activate the ldconfig trigger
Bug #89 [tk8.5] debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs 
removed
Changed Bug title to 'tk8.5: Please activate the ldconfig trigger' from 
'debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs removed'
> reassign -4 tcl8.6
Bug #811120 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Bug reassigned from package 'debhelper' to 'tcl8.6'.
No longer marked as found in versions debhelper/9.20160114.
Ignoring request to alter fixed versions of bug #811120 to the same values 
previously set
> retitle -4 tcl8.6: Please activate the ldconfig trigger
Bug #811120 [tcl8.6] debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs 
removed
Changed Bug title to 'tcl8.6: Please activate the ldconfig trigger' from 
'debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs removed'
> reassign -5 tcl8.5
Bug #811121 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Bug reassigned from package 'debhelper' to 'tcl8.5'.
No longer marked as found in versions debhelper/9.20160114.
Ignoring request to alter fixed versions of bug #811121 to the same values 
previously set
> retitle -5 tcl8.5: Please activate the ldconfig trigger
Bug #811121 [tcl8.5] debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs 
removed
Changed Bug title to 'tcl8.5: Please activate the ldconfig trigger' from 
'debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs removed'
> reassign -6 tcl8.4
Bug #811122 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Bug reassigned from package 'debhelper' to 'tcl8.4'.
No longer marked as found in versions debhelper/9.20160114.
Ignoring request to alter fixed versions of bug #811122 to the same values 
previously set
> retitle -6 tcl8.4: Please activate the ldconfig trigger
Bug #811122 [tcl8.4] debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs 
removed
Changed Bug title to 'tcl8.4: Please activate the ldconfig trigger' from 
'debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs removed'
> reassign -7 tk8.6
Bug #811123 [debhelper] debhelper makes nss FTBFS: 
autoscripts/postinst-makeshlibs removed
Bug reassigned from package 'debhelper' to 'tk8.6'.
No longer marked as found in versions debhelper/9.20160114.
Ignoring request to alter fixed versions of bug #811123 to the same values 
previously set
> retitle -7 tk8.6: Please activate the ldconfig trigger
Bug #811123 [tk8.6] debhelper makes nss FTBFS: autoscripts/postinst-makeshlibs 
removed
Changed Bug title to 'tk8.6: Please activate the ldconfig trigger' from 
'debhelper makes nss FTBFS: autoscripts/postin

Bug#810260: [Python-modules-team] Bug#810260: python-getdns: FTBFS: error: "GETDNS_TRANSPORT_STARTTLS" undeclared

2016-01-15 Thread Scott Kitterman
On Thu, 07 Jan 2016 17:37:34 -0800 Daniel Kahn Gillmor  
wrote:
> Control: reassign 810260 getdns
> Control: affects 810260 python-getdns
> Control: retitle backward-incompatible API change in getdns 0.9.0
...
> This appears to be due to an unnoticed API change in libgetdns 0.9.0,
> sorry about that.  I've just raised the issue with upstream, hopefully
> we can get it resolved promptly.

There's a matching upstream change for python-getdns now, so I think they've 
decided how to resolve it.  I'll cherrypick the fix and upload it.  Since there 
are no other rdepends, as a practical matter, I think this is best.

Scott K



Processed: reassign 810260 to python-getdns

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 810260 python-getdns
Bug #810260 [getdns] backward-incompatible API change in getdns 0.9.0
Bug reassigned from package 'getdns' to 'python-getdns'.
Ignoring request to alter found versions of bug #810260 to the same values 
previously set
Ignoring request to alter fixed versions of bug #810260 to the same values 
previously set
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
810260: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810260
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: limit source to debhelper, tagging 811052

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> limit source debhelper
Limiting to bugs with field 'source' containing at least one of 'debhelper'
Limit currently set to 'source':'debhelper'

> tags 811052 + pending
Bug #811052 [debhelper] FTBFS: Attempt to store .auto/config.guess, which looks 
like a VCS file
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
811052: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811052
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#806981: libpdl-stats-perl: Update build dependencies for GSL 2.x

2016-01-15 Thread Sebastiaan Couwenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 04-12-15 01:32, gregor herrmann wrote:
> On Thu, 03 Dec 2015 18:51:25 +0100, Bas Couwenberg wrote:
>> Please update your package for the ongoing gsl transition
>> (#804246). The attached patch updates the build dependencies to
>> use libgsl-dev. Beware that pdl needs to be updated first
>> (#805824).
> 
> Changed in git; please note that we have 0.73 in git which waits
> for pdl 2.008; so we have to either wait or do some git branch
> juggling if #805824 in a 2.007-x upload.

#805824 was fixed with the upload of pdl (1:2.007-5) by Andreas Tille.
The package moved to team maintenance under the Debian Science Team
umbrella with that upload.

It may be easier now to update pdl to the latest upstream release and
allow libpdl-stats-perl to move on. Although I wouldn't mind an
intermediate 0.6.5.1-2 upload to fix libpdl-stats-perl for the gsl
transition. I can prepare this in a stretch branch if you'd like.

Kind Regards,

Bas

- -- 
 GPG Key ID: 4096R/6750F10AE88D4AF1
Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1
-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJWmUWmAAoJEGdQ8QrojUrxVh8QAJcN8Jud1IFRBbw3YBCc4+Ih
L/vuWgRX1cPQP+Ia6xI1ruvPjkCAtCa/6OvhOD+ABAUzZ8HnBZGxOjpBj2MMg34G
zatYtrnkmPq1SdNeOS7qO+CMPIViINwSaMrSJ4z8q5nAG8n7Mch7vRbjag7tQ6au
kh9eAM0lJGK5ONk2d+jYzmbHd7WnhBcOgKWWHNKdJRHEXK+HzSbkAUdTdVc9dpCg
KoIhlPP3DQmH5JjBMZ5q5qLDpdlEssJeUht5lllzhq7euUEm+Obu0tu+nhtt0cRr
MAQEjHXSVWRZSgRsM47He31A1/pCvL8w4JeA9Qu+wCGbuBV9NU2AHSoF5pGceRWX
TQwx720Oub1fgr9pxWBBj+HrPYTXbWAE73Mbm31NadBYD6daI3nakY1BsymfYeKq
8oSRvAEf1tEmU1+q+ooLKSl/tkJls9kp8HE8eSz0xNOTfbJxTaBR5zYtWt+njKPl
qhxV3FgTh1QHXpRSixwv1YQatG+EmAoaWIUxfCMu829+Aez2s9OIRUAF6YZYk3gL
Cla6K1y954JanFPKFNeoNMDj0gQiPduHJqfemMm+ldUP3Zd9NAoo8N17tzwAiDhA
jMEZFC6CEoqA9ghTRwhddm8SAbCB6rPqRKvdqXFN+xwzOmqpWvqn3fBzdD8D5irp
llS066NAVW8ala2nDtsd
=qhy8
-END PGP SIGNATURE-



Bug#808487: marked as done (eclipse-subclipse: FTBFS: Unsatisfied import package org.tigris.subversion.svnclientadapter_0.0.0.)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 19:07:51 +
with message-id 
and subject line Bug#808487: fixed in svnclientadapter 1.10.3-4
has caused the Debian Bug report #808487,
regarding eclipse-subclipse: FTBFS: Unsatisfied import package 
org.tigris.subversion.svnclientadapter_0.0.0.
to be marked as done.

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

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


-- 
808487: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808487
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: eclipse-subclipse
Version: 1.10.3-1
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:


generateScript:
[eclipse.buildScript] Some inter-plug-in dependencies have not been satisfied.
[eclipse.buildScript] Bundle org.tigris.subversion.clientadapter.javahl:
[eclipse.buildScript]   Unsatisfied import package 
org.tigris.subversion.svnclientadapter_0.0.0.
[eclipse.buildScript]   Unsatisfied import package 
org.tigris.subversion.svnclientadapter.javahl_0.0.0.
[eclipse.buildScript] Bundle org.tigris.subversion.clientadapter.javahl.win32:
[eclipse.buildScript]   Host plug-in 
org.tigris.subversion.clientadapter.javahl_[1.8.0,1.9.0) has not been found.
[eclipse.buildScript] Bundle org.tigris.subversion.clientadapter.javahl.win64:
[eclipse.buildScript]   Host plug-in 
org.tigris.subversion.clientadapter.javahl_[1.8.0,1.9.0) has not been found.
[eclipse.buildScript] Bundle org.tigris.subversion.clientadapter.svnkit:
[eclipse.buildScript]   Missing required plug-in 
org.tmatesoft.svnkit_[1.8.0,1.9.0).
[eclipse.buildScript] Bundle org.tigris.subversion.subclipse.graph:
[eclipse.buildScript]   Missing required plug-in org.eclipse.draw2d_3.2.0.
[eclipse.buildScript]   Missing required plug-in org.eclipse.gef_3.2.0.
[eclipse.buildScript] Bundle org.tigris.subversion.subclipse.graph.test:
[eclipse.buildScript]   Missing required plug-in 
org.tigris.subversion.subclipse.graph_0.0.0.
[eclipse.buildScript] Bundle org.tigris.subversion.subclipse.mylyn:
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.mylyn.tasks.core_[3.0.0,4.0.0).
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.mylyn.tasks.ui_[3.0.0,4.0.0).
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.mylyn.team.ui_[3.0.0,4.0.0).

BUILD FAILED
/usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_3.8.1.dist/scripts/build.xml:35:
 The following error occurred while executing this line:
/usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_3.8.1.dist/scripts/build.xml:91:
 The following error occurred while executing this line:
/usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_3.8.1.dist/templates/package-build/customTargets.xml:19:
 The following error occurred while executing this line:
/usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_3.8.1.dist/scripts/genericTargets.xml:111:
 Processing inclusion from feature 
org.tigris.subversion.clientadapter.javahl.feature: Bundle 
org.tigris.subversion.clientadapter.javahl_1.8.3 failed to resolve.:
Unsatisfied import package org.tigris.subversion.svnclientadapter_0.0.0.
Unsatisfied import package 
org.tigris.subversion.svnclientadapter.javahl_0.0.0.


Total time: 8 seconds
An error has occurred. See the log file
/eclipse-subclipse-1.10.3/debian/.eclipse-build/build/home/workspace/.metadata/.log.
jh_compilefeatures: cd debian/.eclipse-build && 
/usr/lib/eclipse/buildscripts/pde-build -o 
/eclipse-subclipse-1.10.3/debian/.eclipse-build/orbitdeps -a "-DjavacTarget=1.5 
-DjavacSource=1.5"  -f org.tigris.subversion.clientadapter.javahl.feature 
returned exit code 13
debian/rules:10: recipe for target 'build' failed

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/eclipse-subclipse.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
--- End Message ---
--- Begin Message ---
Source: svnclientadapter
Source-Version: 1.10.3-4

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

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

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

Debian distribution maintenance software
pp.
Emm

Processed: Bumping bugs about incompatibility with findutils 4.6.0 to rc

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Hello,
> #
> # I intend to upload indutils 4.6.0 to sid soonish and am therefore
> # raising the severity of the few remaining open bug reports.
> severity 724767 serious
Bug #724767 [clisp] Uses deprecated find -perm +xxx syntax, please switch to 
find -perm /+++
Severity set to 'serious' from 'important'
> severity 803028 serious
Bug #803028 [emscripten] emscripten uses deprecated find -perm +xxx syntax, 
please switch to find -perm /+++
Severity set to 'serious' from 'important'
> severity 808919 serious
Bug #808919 [frontaccounting] frontaccounting uses deprecated find -perm +xxx 
syntax, please switch to find -perm /+++
Severity set to 'serious' from 'important'
> severity 808931 serious
Bug #808931 [perl-cross-debian] perl-cross-debian uses deprecated find -perm 
+xxx syntax, please switch to find -perm /+++
Severity set to 'serious' from 'important'
> severity 808922 serious
Bug #808922 [pycurl] pycurl uses deprecated find -perm +xxx syntax, please 
switch to find -perm /+++
Severity set to 'serious' from 'important'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
724767: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=724767
803028: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803028
808919: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808919
808922: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808922
808931: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808931
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#799385: oh all patches were send by an venenux developer and credited to anothers

2016-01-15 Thread VenenuX GNU Linux
according to the git tracker the patch was commited and must working in
debian
in upstream depends of the authors and developers

here the commit that solves and this must be close, please before reopens
try to confirm
http://anonscm.debian.org/cgit/pkg-multimedia/smplayer.git/commit/?id=f8d2691e3599a6373c03f4db924c4c9af6797aa6


Bug#799385: oh all patches were send by an venenux developer and credited to anothers

2016-01-15 Thread VenenuX GNU Linux
oh all patches were send by venenux developmen manpowers and commited by
aothers! wow

the credits systems are very wow!


Bug#808487: eclipse-subclipse: FTBFS: Unsatisfied import package org.tigris.subversion.svnclientadapter_0.0.0.

2016-01-15 Thread Emmanuel Bourg
Control: reassign -1 svnclientadapter 1.10.3-3

This issue was caused by the bnd 2.1.0 transition on svnclientadapter.
The jar in the version 1.10.3-3 no longer contains the Export-Package
attribute.



Processed: Re: Bug#808487: eclipse-subclipse: FTBFS: Unsatisfied import package org.tigris.subversion.svnclientadapter_0.0.0.

2016-01-15 Thread Debian Bug Tracking System
Processing control commands:

> reassign -1 svnclientadapter 1.10.3-3
Bug #808487 [src:eclipse-subclipse] eclipse-subclipse: FTBFS: Unsatisfied 
import package org.tigris.subversion.svnclientadapter_0.0.0.
Bug reassigned from package 'src:eclipse-subclipse' to 'svnclientadapter'.
No longer marked as found in versions eclipse-subclipse/1.10.3-1.
Ignoring request to alter fixed versions of bug #808487 to the same values 
previously set
Bug #808487 [svnclientadapter] eclipse-subclipse: FTBFS: Unsatisfied import 
package org.tigris.subversion.svnclientadapter_0.0.0.
There is no source info for the package 'svnclientadapter' at version 
'1.10.3-3' with architecture ''
Unable to make a source version for version '1.10.3-3'
Marked as found in versions 1.10.3-3.

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



Bug#811106: browser-plugin-gnash: crashes with general protection error and fails to work

2016-01-15 Thread Francesco Poli (wintermute)
Package: browser-plugin-gnash
Version: 0.8.11~git20160109-1
Severity: grave
Justification: renders package unusable

Hello!

I experienced a grave regression after upgrading browser-plugin-gnash:

  [UPGRADE] browser-plugin-gnash:amd64 0.8.11~git20150419-3+b3 -> 
0.8.11~git20160109-1
  [UPGRADE] gnash:amd64 0.8.11~git20150419-3+b3 -> 0.8.11~git20160109-1
  [UPGRADE] gnash-common:amd64 0.8.11~git20150419-3+b3 -> 0.8.11~git20160109-1

and restarting iceweasel.
Attempting to view any YouTube video results in a gnash crash with
errors such as:

  traps: plugin-containe[5604] general protection ip:7f79bfddc166 
sp:7ffc805894f0 error:0 in libxul.so[7f79beda6000+39ec000]

in /var/log/kern.log

Downgrading the three packages to their previously installed versions
solves the issue and everything works again as before.

Please investigate and fix this bug and/or forward my bug report upstream.

Please do *not* downgrade the severity of this bug report, so that
users will be warned against performing the upgrade (especially if
they use apt-listbugs).

Thanks for your time!
Bye.



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

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

Versions of packages browser-plugin-gnash depends on:
ii  gnash 0.8.11~git20160109-1
ii  libboost-iostreams1.58.0  1.58.0+dfsg-4.1
ii  libc6 2.21-6
ii  libgcc1   1:5.3.1-5
ii  libglib2.0-0  2.46.2-3
ii  libstdc++65.3.1-5

browser-plugin-gnash recommends no packages.

Versions of packages browser-plugin-gnash suggests:
pn  browser-plugin-lightspark  

-- Configuration Files:
/etc/gnashpluginrc changed:
set startStopped on


-- no debconf information



Processed: found 799385 in 14.9.0~ds0-1, notfound 799385 in 14.9.0~ds0-1.1 ...

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # let's try this again
> found 799385 14.9.0~ds0-1
Bug #799385 [smplayer] recent openbox cuase playlist smplayer dissapear if 
retuns from fullscreen
Marked as found in versions smplayer/14.9.0~ds0-1.
> notfound 799385 14.9.0~ds0-1.1
Bug #799385 [smplayer] recent openbox cuase playlist smplayer dissapear if 
retuns from fullscreen
There is no source info for the package 'smplayer' at version '14.9.0~ds0-1.1' 
with architecture ''
Unable to make a source version for version '14.9.0~ds0-1.1'
No longer marked as found in versions 14.9.0~ds0-1.1.
> notfound 799385 14.9.0~ds0-1.1thanks
Bug #799385 [smplayer] recent openbox cuase playlist smplayer dissapear if 
retuns from fullscreen
There is no source info for the package 'smplayer' at version 
'14.9.0~ds0-1.1thanks' with architecture ''
Unable to make a source version for version '14.9.0~ds0-1.1thanks'
No longer marked as found in versions 14.9.0~ds0-1.1thanks.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
799385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#811105: python-dcos: FTBFS: /usr/bin/python2.7: No module named pytest

2016-01-15 Thread Chris Lamb
Source: python-dcos
Version: 0.2.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

python-dcos fails to build from source in unstable/amd64:

  [..]

 debian/rules override_dh_auto_test
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160115174931.AKTD5UK6WO/python-dcos-0.2.0'
  pyversions: missing X(S)-Python-Version in control file, fall back to 
debian/pyversions
  pyversions: missing debian/pyversions file, fall back to supported versions
  py3versions: no X-Python3-Version in control file, using supported versions
  set -e ; for pyvers in 2.7 3.4 3.5; do \
python$pyvers -m pytest -p no:cacheprovider tests ; \
  done
  /usr/bin/python2.7: No module named pytest
  debian/rules:25: recipe for target 'override_dh_auto_test' failed
  make[1]: *** [override_dh_auto_test] Error 1
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160115174931.AKTD5UK6WO/python-dcos-0.2.0'
  debian/rules:10: recipe for target 'build' failed
  make: *** [build] Error 2

  [..]

The full build log is attached.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-


python-dcos.0.2.0-1.unstable.amd64.log.txt.gz
Description: Binary data


Processed: found 799385 in 14.9.0~ds0-1.1

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 799385 14.9.0~ds0-1.1
Bug #799385 [smplayer] recent openbox cuase playlist smplayer dissapear if 
retuns from fullscreen
There is no source info for the package 'smplayer' at version '14.9.0~ds0-1.1' 
with architecture ''
Unable to make a source version for version '14.9.0~ds0-1.1'
Marked as found in versions 14.9.0~ds0-1.1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
799385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: your mail

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> fixed 743955 coreutils/8.20-1
Bug #743955 [coreutils] coreutils: corrupted files on heavily fragmented ext3 
and ext4 partitions
Marked as fixed in versions coreutils/8.20-1.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
743955: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=743955
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: your mail

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 799385 14.9.0~ds0-1.1thanks
Bug #799385 [smplayer] recent openbox cuase playlist smplayer dissapear if 
retuns from fullscreen
There is no source info for the package 'smplayer' at version 
'14.9.0~ds0-1.1thanks' with architecture ''
Unable to make a source version for version '14.9.0~ds0-1.1thanks'
Marked as found in versions 14.9.0~ds0-1.1thanks.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
799385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Re: Processed (with 1 error): Re: Bug#799385: fixed in smplayer 15.11.0~ds0-1

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 799385 smplayer
Bug #799385 [openbox] recent openbox cuase playlist smplayer dissapear if 
retuns from fullscreen
Bug reassigned from package 'openbox' to 'smplayer'.
No longer marked as found in versions 14.9.0~ds0-1.1 and openbox/3.5.0-7.
Ignoring request to alter fixed versions of bug #799385 to the same values 
previously set
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
799385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#799385: fixed in smplayer 15.11.0~ds0-1

2016-01-15 Thread Gianfranco Costamagna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

control: reopen -1

Hi, seems that the fix didn't land in 15.11.0 version at least
according to the source tree

http://anonscm.debian.org/cgit/pkg-multimedia/smplayer.git/tree/src/base
guiplus.cpp#n433

cheers,

Gianfranco

On Fri, 15 Jan 2016 16:23:01 + =?utf-8?q?Mateusz_=C5=81ukasik?=
 wrote:
> Source: smplayer Source-Version: 15.11.0~ds0-1
> 
> We believe that the bug you reported is fixed in the latest version
> of smplayer, which is due to be installed in the Debian FTP
> archive.
> 
> A summary of the changes between this version and the previous one
> is attached.
> 
> Thank you for reporting the bug, which will now be closed.  If you 
> have further comments please address them to
> 799...@bugs.debian.org, and the maintainer will reopen the bug
> report if appropriate.
> 
> Debian distribution maintenance software pp. Mateusz Łukasik
>  (supplier of updated smplayer package)
> 
> (This message was generated automatically at their request; if you 
> believe that there is a problem with it please contact the archive 
> administrators by mailing ftpmas...@ftp-master.debian.org)
> 
> 
> -BEGIN PGP SIGNED MESSAGE- Hash: SHA256
> 
> Format: 1.8 Date: Sun, 06 Dec 2015 21:24:40 +0100 Source: smplayer 
> Binary: smplayer smplayer-l10n Architecture: source Version:
> 15.11.0~ds0-1 Distribution: unstable Urgency: medium Maintainer:
> Debian Multimedia Maintainers
>  Changed-By:
> Mateusz Łukasik  Description: smplayer   -
> complete front-end for MPlayer, MPlayer2 and MPV smplayer-l10n -
> complete front-end for MPlayer and MPlayer2 - translation files 
> Closes: 770357 770359 770382 783401 798961 799040 799385 799984
> 800533 Launchpad-Bugs-Fixed: 938015 1390937 Changes: smplayer
> (15.11.0~ds0-1) unstable; urgency=medium . [ Mateusz Łukasik ] *
> Repackaging upstream sources to drop included zlib sources. * New
> upstream release. (Closes: #770357, #798961, #799040, #800533, LP:
> #1390937) - Build with QT5. * Bump standards version to 3.9.6. (no
> changes needed) * Patch working: (thanks Alf Gaida
> ) - Add 03-not_define_reminder_actions.patch
> to do not define reminder actions (Closes: #770359) - Add
> 04_update_desktop_launcher.patch for add Unity Launcher Quicklist
> and Keywords in desktop file. (LP: #938015) - Refresh
> 02-disable_updates.patch. - Add 05-add-debian-hardening-flags.patch
> to using Debian hardening flags. - Add 06-tryfixplaylist.patch to
> fix playlist that disappear after leaving full-screen with openbox.
> (Closes: #799385, #799984) * debian/rules:
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWmSPeAAoJEPNPCXROn13Z+EYP/3PZh9XX8mtgalpXywsZeWfY
BQqCrckykQHtvOw3OqVhrDxDKA7bDqmO4QHOgHQ+E5w87Evjf1+Xl/IbaVhkC0cO
jjJKtKK0E7d0ZcQDHrxQtHPZabx8+1XcG7k02oWb7XKYHi1jRbDf5H3pybBvmJ2h
9m8zXF/xOnLGPPOjrxLF4aYUOGdUSQb1O2y5hlYbJnWj3iuZAWA8NQWs5BPVfJgV
6Pr7C/IHyLW7E82HWqnJO/6FzX1rsnTpr9YpTaT3xqiUeJeU/hIq2JmTOki5vx5g
tKEjn895PMsCWkLawTbErxTJnV2Yqaq1yhB91ja+qg1CHiiqbJodJa5Obfe2i7Qv
jR4XNa5fmikX+QiGJ/zCxcdCl8rvAo5z2YAlheLomyJZGaotLbtKCsgkHPIMZUBj
8pM6cuWAbef4/y994H+2YJ5Q2HW4gD+ArIY4mSmLLfscYwzQZqvOhK2RuklTNJPu
BkeN8GNPxVxVpJGCFv3c1ZtlBoS+8Oyrken2WO5Bwo1wmGTOR4CcFYiNq9wDQMpt
9+1m1V9X02Lrdu5IU8kmf+8IJGQhZT2J5gvQmv41VZrIWWXcSAHxqw7cbJqXLPrX
mGytn8PBIuFqOhcxHZsUYrnDrWRTA8KjpZfd+pt/rUesQdYfYTbCgz6KHN9DtYpW
whWhHoIh10lB3E4Y69Z9
=XOBe
-END PGP SIGNATURE-



Processed: Re: Bug#799385: fixed in smplayer 15.11.0~ds0-1

2016-01-15 Thread Debian Bug Tracking System
Processing control commands:

> reopen -1
Bug #799385 {Done: Mateusz Łukasik } [openbox] recent 
openbox cuase playlist smplayer dissapear if retuns from fullscreen
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions smplayer/15.11.0~ds0-1.

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



Bug#805824: Team maintenance in Debian Science for pdl? (Was: pdl: Fails to build with GSL 2)

2016-01-15 Thread gregor herrmann
On Fri, 15 Jan 2016 14:13:33 +0100, Andreas Tille wrote:

> BTW, I have CCed Gregor Hermann since after noticing that the package is
> hosted at CPAN this might also be a package for Debian Perl team.  I
> trust Gregor to decide whether he want to forward this for discussion or
> leave it in Debian Science.

I'm fine with having it either in the Science or the Perl team,
whatever is more convenient for you guys.
Since you just moved it to Science, maybe we can leave it there for
now, and we're always around for help. Unless Henning prefers
pkg-perl of course.

Cheers,
gregor

-- 
 .''`.  Homepage https://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer -  https://www.debian.org/
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: John Zorn: Kedushah (Sparks)


signature.asc
Description: Digital Signature


Bug#799385: fixed in smplayer 15.11.0~ds0-1

2016-01-15 Thread Gianfranco Costamagna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Control: reassing -1 smplayer
thanks
On Fri, 15 Jan 2016 16:23:01 + =?utf-8?q?Mateusz_=C5=81ukasik?=
 wrote:
> Source: smplayer Source-Version: 15.11.0~ds0-1
> 
> We believe that the bug you reported is fixed in the latest version
> of smplayer, which is due to be installed in the Debian FTP
> archive.
> 
> A summary of the changes between this version and the previous one
> is attached.
> 
> Thank you for reporting the bug, which will now be closed.  If you 
> have further comments please address them to
> 799...@bugs.debian.org, and the maintainer will reopen the bug
> report if appropriate.
> 
> Debian distribution maintenance software pp. Mateusz Łukasik
>  (supplier of updated smplayer package)
> 
> (This message was generated automatically at their request; if you 
> believe that there is a problem with it please contact the archive 
> administrators by mailing ftpmas...@ftp-master.debian.org)
> 
> 
> -BEGIN PGP SIGNED MESSAGE- Hash: SHA256
> 
> Format: 1.8 Date: Sun, 06 Dec 2015 21:24:40 +0100 Source: smplayer 
> Binary: smplayer smplayer-l10n Architecture: source Version:
> 15.11.0~ds0-1 Distribution: unstable Urgency: medium Maintainer:
> Debian Multimedia Maintainers
>  Changed-By:
> Mateusz Łukasik  Description: smplayer   -
> complete front-end for MPlayer, MPlayer2 and MPV smplayer-l10n -
> complete front-end for MPlayer and MPlayer2 - translation files 
> Closes: 770357 770359 770382 783401 798961 799040 799385 799984
> 800533 Launchpad-Bugs-Fixed: 938015 1390937 Changes: smplayer
> (15.11.0~ds0-1) unstable; urgency=medium . [ Mateusz Łukasik ] *
> Repackaging upstream sources to drop included zlib sources. * New
> upstream release. (Closes: #770357, #798961, #799040, #800533, LP:
> #1390937) - Build with QT5. * Bump standards version to 3.9.6. (no
> changes needed) * Patch working: (thanks Alf Gaida
> ) - Add 03-not_define_reminder_actions.patch
> to do not define reminder actions (Closes: #770359) - Add
> 04_update_desktop_launcher.patch for add Unity Launcher Quicklist
> and Keywords in desktop file. (LP: #938015) - Refresh
> 02-disable_updates.patch. - Add 05-add-debian-hardening-flags.patch
> to using Debian hardening flags. - Add 06-tryfixplaylist.patch to
> fix playlist that disappear after leaving full-screen with openbox.
> (Closes: #799385, #799984) * debian/rules:
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWmSMeAAoJEPNPCXROn13ZTA0QANNWRWY56+ODrVc4i8SOP4yk
a2qra0IAMVtABF4YrjWdT1aWeMKNSIjG7lt0Eu1LlNFiK7WcKveNa/uhQ7mlAics
Fl3gcYd4oU+oOdowbuoOcLO/vfMDyoxXm9YpLeV3v+OUarRxvxh828nZEfPVygiU
tI1tnUxsPvvaEkaFLZqx0VI/sHgbTibGeEPByNgsd/WfJFtNLNVS4IJrnmzXvfh2
PB4aj/ui3YJM5+bZoBhsFtXftjOwHCgkq8mS0IzQOMLtT29Xq1TGIS79x/+AX+if
XwKDhBPRIPxK/LZfgTunsPztGdsSgUmUji4U/DCNAoomnIJdMrIYC84Sp2TLOmfK
Pu8OiDa5kH1gk/NN2iwjygynLX/AA8D22eG+9N5kgeTP/VETUJgmuM7WcbFufxsT
6oMbc4UMXoNuepUn9oi1S5smuBcYt7drxjxv57dJ3Ls157f+K4gTUN6w71lSAdRX
Of2ayjjZtLSVDODK+QqzMmcvIMb8u9aA4FN47/8nqyr55Y4oBnkVc8388tTQUP94
lUjBqo8vFybhh9tnVS4PJlDrg6xd150LsUMTo7uWnzQojIeJUAEnrdPYW+qxz/W1
zFg46RmxHlUodbvCDKSrZFiFXqIOx+G1ODSufrpx9cNNsps+5UdwI0n/30k79kDw
Esmjy3Q728F8Vfe7Txqg
=S7Jg
-END PGP SIGNATURE-



Bug#811097: /usr/sbin/dhcpd: Today my dhcp server stopped working and could not be restarted

2016-01-15 Thread Bruce Momjian
It must be this set of updates applied last night that did it:

  isc-dhcp-client isc-dhcp-common isc-dhcp-server openssh-client
  openssh-server

-- 
  Bruce Momjian  http://momjian.us
  EnterpriseDB http://enterprisedb.com

+ As you are, so once was I. As I am, so you will be. +
+ Roman grave inscription +



Bug#799385: marked as done (recent openbox cuase playlist smplayer dissapear if retuns from fullscreen)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 16:23:01 +
with message-id 
and subject line Bug#799385: fixed in smplayer 15.11.0~ds0-1
has caused the Debian Bug report #799385,
regarding recent openbox cuase playlist smplayer dissapear if retuns from 
fullscreen
to be marked as done.

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

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


-- 
799385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: openbox
Version: 3.5.0-7
Severity: grave

When using smplayer wit iopenbox 3.5.0 and show the playlist both
windows are show, and then go to fullscreen and back to normal and
playlist dissapears, event if a try to show it or fource tho show it!

When using 3.4.11 playlist are show in normal screen , compat mode and
fullscreen if user wnats and if returns from fullscreen playlist will
return to show again, that's not happened with openbox 3.5.0 or 3.6.0,
the playlist dissapears if smplayer returns from fullscreen

NOt a bug of smplayer due i try many versions of smplayers and only
happened with openbox 3.5.X and 3.6.X, i also tried using stable
debian jesse 8.0 and still happened with openbox 3.5.2

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

Kernel: Linux 3.2.0-0.bpo.2-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


Versions of packages openbox depends on:
ii  libc6   2.11.1-2 GNU C Library: Shared libraries
ii  libfontconfig1  2.6.0-4  generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libglib2.0-02.22.2-2 The GLib library of C routines
ii  libice6 2:1.0.5-1X11 Inter-Client Exchange library
ii  libobt0   3.5.0-7 parsing library for openbox
ii  libobrender27   3.5.0-7 rendering library for openbox them
ii  libpango1.0-0   1.26.0-1 Layout and rendering of internatio
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libstartup-notifica 0.10-1   library for program launch feedbac
ii  libx11-62:1.3-1  X11 client-side library
ii  libxau6 1:1.0.5-1X11 authorisation library
ii  libxext62:1.0.99.4-1 X11 miscellaneous extension librar
ii  libxft2 2.1.13-3 FreeType-based font drawing librar
ii  libxinerama12:1.0.3-2X11 Xinerama extension library
ii  libxml2 2.7.6.dfsg-1 GNOME XML library
ii  libxrandr2  2:1.3.0-2X11 RandR extension library
ii  libxrender1 1:0.9.4-2X Rendering Extension client libra
ii  zlib1g  1:1.2.3.3.dfsg-15+b2 compression library - runtime

Versions of packages openbox recommends:
pn  openbox-themes (no description available)

Versions of packages openbox suggests:
ii  libxml2-dev 2.7.6.dfsg-1 Development files for the GNOME XM
ii  menu2.1.42   generates programs menu for all me
ii  obconf  2.0.3-3  Preferences manager for Openbox wi
ii  python  2.6.1-3  An interactive high-level object-o
ii  ttf-dejavu  2.30-1   Metapackage to pull in ttf-dejavu-

-- no debconf information



Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com
--- End Message ---
--- Begin Message ---
Source: smplayer
Source-Version: 15.11.0~ds0-1

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

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

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

Debian distribution maintenance software
pp.
Mateusz Łukasik  (supplier of updated smplayer package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 06 Dec 2015 21:24:40 +0100
Source: smplayer
Binary: smplayer smplayer-l10n
Architecture: source
Version: 15.11.0~ds0-1
Distribution: 

Bug#810897: marked as done (fonts-tlwg: fonts-tlwg-*-ttf packages have incorrect Breaks/Replaces relations)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 16:21:14 +
with message-id 
and subject line Bug#810897: fixed in fonts-tlwg 1:0.6.2-2.1
has caused the Debian Bug report #810897,
regarding fonts-tlwg: fonts-tlwg-*-ttf packages have incorrect Breaks/Replaces 
relations
to be marked as done.

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

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


-- 
810897: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810897
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: fonts-tlwg-waree-ttf
Version: 1:0.6.2-2
Severity: serious

Hi,

Upgrading fonts-tlwg-waree failed for me with the error:

Preparing to unpack .../fonts-tlwg-waree-ttf_1%3a0.6.2-2_all.deb ...
Unpacking fonts-tlwg-waree-ttf (1:0.6.2-2) ...
dpkg: error processing archive 
/var/cache/apt/archives/fonts-tlwg-waree-ttf_1%3a0.6.2-2_all.deb (--unpack):
 trying to overwrite '/usr/share/fonts/truetype/tlwg/Waree-BoldOblique.ttf', 
which is also in package fonts-tlwg-waree 1:0.6.2-1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)

It looks like you forgot the epoch on the Breaks and Replaces in
fonts-tlwg-waree-ttf (and probably other packages).

Thanks,
James

signature.asc
Description: This is a digitally signed message part
--- End Message ---
--- Begin Message ---
Source: fonts-tlwg
Source-Version: 1:0.6.2-2.1

We believe that the bug you reported is fixed in the latest version of
fonts-tlwg, which is due to be installed in the Debian FTP archive.

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

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

Debian distribution maintenance software
pp.
Iain Lane  (supplier of updated fonts-tlwg package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 14 Jan 2016 17:09:34 +
Source: fonts-tlwg
Binary: fonts-tlwg-kinnari fonts-tlwg-garuda fonts-tlwg-norasi fonts-tlwg-loma 
fonts-tlwg-mono fonts-tlwg-typewriter fonts-tlwg-typist fonts-tlwg-typo 
fonts-tlwg-umpush fonts-tlwg-sawasdee fonts-tlwg-purisa fonts-tlwg-waree 
fonts-tlwg-laksaman fonts-thai-tlwg fonts-tlwg-kinnari-ttf 
fonts-tlwg-garuda-ttf fonts-tlwg-norasi-ttf fonts-tlwg-loma-ttf 
fonts-tlwg-mono-ttf fonts-tlwg-typewriter-ttf fonts-tlwg-typist-ttf 
fonts-tlwg-typo-ttf fonts-tlwg-umpush-ttf fonts-tlwg-sawasdee-ttf 
fonts-tlwg-purisa-ttf fonts-tlwg-waree-ttf fonts-tlwg-laksaman-ttf 
fonts-thai-tlwg-ttf fonts-tlwg-kinnari-otf fonts-tlwg-garuda-otf 
fonts-tlwg-norasi-otf fonts-tlwg-loma-otf fonts-tlwg-mono-otf 
fonts-tlwg-typewriter-otf fonts-tlwg-typist-otf fonts-tlwg-typo-otf 
fonts-tlwg-umpush-otf fonts-tlwg-sawasdee-otf fonts-tlwg-purisa-otf 
fonts-tlwg-waree-otf fonts-tlwg-laksaman-otf fonts-thai-tlwg-otf 
fonts-thai-tlwg-web fonts-thai-tlwg-udeb latex-fonts-thai-tlwg
Architecture: source
Version: 1:0.6.2-2.1
Distribution: unstable
Urgency: medium
Maintainer: Theppitak Karoonboonyanan 
Changed-By: Iain Lane 
Description:
 fonts-thai-tlwg - Thai fonts maintained by TLWG (metapackage)
 fonts-thai-tlwg-otf - Thai OpenType fonts maintained by TLWG (metapackage)
 fonts-thai-tlwg-ttf - Thai TrueType fonts maintained by TLWG (metapackage)
 fonts-thai-tlwg-udeb - Thai fonts in TrueType format for D-I use (udeb)
 fonts-thai-tlwg-web - Thai web fonts maintained by TLWG
 fonts-tlwg-garuda - Thai Garuda font (dependency package)
 fonts-tlwg-garuda-otf - Thai Garuda OpenType font
 fonts-tlwg-garuda-ttf - Thai Garuda TrueType font
 fonts-tlwg-kinnari - Thai Kinnari font (dependency package)
 fonts-tlwg-kinnari-otf - Thai Kinnari OpenType font
 fonts-tlwg-kinnari-ttf - Thai Kinnari TrueType font
 fonts-tlwg-laksaman - Thai Laksaman font (dependency package)
 fonts-tlwg-laksaman-otf - Thai Laksaman OpenType font
 fonts-tlwg-laksaman-ttf - Thai Laksaman TrueType font
 fonts-tlwg-loma - Thai Loma font (dependency package)
 fonts-tlwg-loma-otf - Thai Loma OpenType font
 fonts-tlwg-loma-ttf - Thai Loma TrueType font
 fonts-tlwg-mono - Thai TlwgMono font (dependency package)
 fonts-tlwg-mono-otf - Thai TlwgMono OpenType font
 fonts-tlwg-mono-ttf - Thai TlwgMono TrueType font
 fonts-tlwg-norasi - Thai Norasi font (dependency package)
 fonts-tlwg-norasi-otf - Thai Norasi OpenType font
 fonts-tlwg-norasi-ttf - Thai Norasi TrueType font
 fonts-tlwg-purisa - Thai Purisa font (dependen

Bug#809053: xindy FTBFS due to CPPFLAGS containing spaces

2016-01-15 Thread Agustin Martin
Hi, Norbert,

On Fri, Jan 15, 2016 at 11:28:05PM +0900, Norbert Preining wrote:

> sorry for the late reply, and thanks for all your testing.
> 
> >  * debian/README.source: It is still about old dpatch.
> 
> removed.
> 
> >  * debian/gbp.conf: Should it be in the sources?
> 
> added.

Sorry, I did not explain myself well. I wondered if this should be something
associated to the local git repo or something to be committed to the public
git repo and put in debian xindy_2.5.1.20160104-1.debian.tar.xz sources. I
usually keep these files local inside .git, but others (teams ?) want that
in the git repo, so all commits from a cloned repo are consistent. Since you
are the maintainer, do as you prefer, I only wanted to warn in case it was
unintentional.

> > Did not find other issues, your xindy package really seems ready for
> > upload when you want. 
> 
> I have prepared a package ready to upload. Can you give it a last look,
> same location as before:
>   deb http://www.preining.info/debian/ xindy main
>   deb-src http://www.preining.info/debian/ xindy main
> version 2.5.1.20160104-1

Tested and working as well as previous version.

Just noticed yet another minor issue, Vcs-Git and Vcs-Browser still point to
Joerg Sommer's old git repo. This should probably point to new git repo
under Debian TeX maintainers control.

> I still hope that MIA which I have contacted quite some time ago
> will answer, but it is now quite some time, and no answer, so
> I will just upload, I guess, if you are fine.

Agreed. This way real life test starts sooner.

Thanks for caring about xindy.

-- 
Agustin



Bug#811002: marked as done (python-ruffus: FTBFS: sre_constants.error: unbalanced parenthesis at position 2)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 16:07:07 +
with message-id 
and subject line Bug#811002: fixed in python-ruffus 2.6.3+dfsg-2
has caused the Debian Bug report #811002,
regarding python-ruffus: FTBFS: sre_constants.error: unbalanced parenthesis at 
position 2
to be marked as done.

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

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


-- 
811002: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811002
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: python-ruffus
Version: 2.6.3+dfsg-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

python-ruffus fails to build from source in unstable/amd64:

  [..]

  Running test_mkdir.py
  .Loose cannon!
  .Loose cannon!
  .
  --
  Ran 3 tests in 2.782s
  
  OK
  Running test_posttask_merge.py
  ..
  --
  Ran 2 tests in 9.936s
  
  OK
  Running test_cmdline.py
  
  --
  Ran 4 tests in 0.007s
  
  OK
  Running test_graphviz.py
  ..
  --
  Ran 2 tests in 0.003s
  
  OK
  Running test_ruffus_utility_parse_task_arguments.py
  .
  --
  Ran 5 tests in 0.003s
  
  OK
  Running test_split_subdivide_checkpointing.py
   Run pipeline normally...
   Check that running again does nothing. (All up to date).
   Running again with forced tasks to generate more files...
   Check that running again does nothing. (All up to date).
   Running again with forced tasks to generate even more files...
   Check that running again does nothing. (All up to date).
  . Run pipeline normally...
   Check that running again does nothing. (All up to date).
   Running again with forced tasks to generate more files...
   Check that running again does nothing. (All up to date).
   Running again with forced tasks to generate even more files...
   Check that running again does nothing. (All up to date).
  .
  --
  Ran 2 tests in 4.496s
  
  OK
  Running test_pipeline_printout_graph.py
  ..
  --
  Ran 2 tests in 0.010s
  
  OK
   Run pipeline normally...
   Run pipeline normally...
  Running test_follows_mkdir.py
  ..
  --
  Ran 2 tests in 1.570s
  
  OK
  Running test_N_x_M_and_collate.py
  .
  OK
  .
  --
  Ran 2 tests in 2.158s
  
  OK
  
  OK
  Running test_unicode_filenames.py
  ..
  --
  Ran 2 tests in 1.677s
  
  OK
  Running test_subpipeline.py
  .
  --
  Ran 1 test in 2.942s
  
  OK
  Running test_regex_error_messages.py
  
  --
  Ran 12 tests in 4.090s
  
  OK
  Running test_newstyle_regex_error_messages.py
  
  --
  Ran 12 tests in 3.990s
  
  OK
  Running test_combinatorics.py
  .
  --
  Ran 17 tests in 8.407s
  
  OK
  Running test_newstyle_combinatorics.py
  .
  --
  Ran 17 tests in 8.737s
  
  OK
  Running test_job_completion_checksums.py
  ..
  --
  Ran 18 tests in 6.896s
  
  OK
  Running test_transform_formatter.py
  ..
  --
  Ran 2 tests in 0.384s
  
  OK
  DONE!!!
  Running test_file_name_parameters.py
  
  --
  Ran 24 tests in 2.247s
  
  OK
  Running test_with_logger.py
  ..
  --
  Ran 2 tests in 6.924s
  
  OK
  Running script test_with_logger.py
  ..
  --

Bug#811097: /usr/sbin/dhcpd: Today my dhcp server stopped working and could not be restarted

2016-01-15 Thread Bruce Momjian,,,
Package: isc-dhcp-server
Version: 4.1.1-P1-15+squeeze9
Severity: critical
File: /usr/sbin/dhcpd
Justification: breaks unrelated software


dhcpd stopped working today and could not be restarted with 'service 
isc-dhcp-server restart'.  It reported a configuration check failure
but the configuration file had not been modified for months.  I found this also 
reported here:

https://lists.debian.org/debian-user/2016/01/msg00675.html

Adding a symlink from /etc/dhcp/dhcpd.conf to /etc/ fixed the problem and 
allowed the service to start.

-- System Information:
Debian Release: 6.0.10
  APT prefers squeeze-lts
  APT policy: (500, 'squeeze-lts'), (500, 'oldoldstable-updates'), (500, 
'oldoldstable')
Architecture: amd64 (x86_64)

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

Versions of packages isc-dhcp-server depends on:
ii  debconf [debconf-2. 1.5.36.1 Debian configuration management sy
ii  debianutils 3.4  Miscellaneous utilities specific t
ii  isc-dhcp-common 4.1.1-P1-15+squeeze9 common files used by all the isc-d
ii  libc6   2.11.3-4+deb6u8  Embedded GNU C Library: Shared lib
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

isc-dhcp-server recommends no packages.

Versions of packages isc-dhcp-server suggests:
pn  isc-dhcp-server-ldap   (no description available)

-- Configuration Files:
/etc/dhcp/dhcpd.conf changed [not included]

-- debconf information excluded



Bug#809567: marked as done (eclipse-rse: FTBFS: Missing required plug-in org.apache.commons.net_[1.4.1,4.0.0).)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 15:57:52 +
with message-id 
and subject line Bug#809567: fixed in libcommons-net-java 3.4-2
has caused the Debian Bug report #809567,
regarding eclipse-rse: FTBFS: Missing required plug-in 
org.apache.commons.net_[1.4.1,4.0.0).
to be marked as done.

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

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


-- 
809567: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809567
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: eclipse-rse
Version: 3.4.2-2
Severity: serious
Justification: fails to build from source
Tags: sid stretch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-CC: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

The package fails to build:

init:

generateScript:
[eclipse.buildScript] Some inter-plug-in dependencies have not been satisfied.
[eclipse.buildScript] Bundle org.eclipse.rse.connectorservice.telnet:
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.rse.services.telnet_[2.0.0,2.1.0).
[eclipse.buildScript]   Missing required plug-in 
org.apache.commons.net_[1.4.1,4.0.0).
[eclipse.buildScript] Bundle org.eclipse.rse.services.files.ftp:
[eclipse.buildScript]   Missing required plug-in 
org.apache.commons.net_[1.4.1,4.0.0).
[eclipse.buildScript] Bundle org.eclipse.rse.services.telnet:
[eclipse.buildScript]   Missing required plug-in 
org.apache.commons.net_[2.0.0,4.0.0).
[eclipse.buildScript] Bundle org.eclipse.rse.subsystems.files.ftp:
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.rse.services.files.ftp_[3.0.0,4.0.0).
[eclipse.buildScript]   Missing required plug-in 
org.apache.commons.net_[1.4.1,4.0.0).
[eclipse.buildScript] Bundle org.eclipse.rse.subsystems.shells.telnet:
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.rse.connectorservice.telnet_[1.1.0,2.0.0).
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.rse.services.telnet_[2.0.0,2.1.0).
[eclipse.buildScript] Bundle org.eclipse.rse.tests:
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.rse.services.files.ftp_[3.0.0,4.0.0).
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.rse.subsystems.files.ftp_[2.1.0,3.0.0).
[eclipse.buildScript]   Missing required plug-in 
org.apache.commons.net_[1.4.1,4.0.0).
[eclipse.buildScript] Bundle org.eclipse.tm.terminal.local:
[eclipse.buildScript]   Missing required plug-in 
org.eclipse.cdt.core_[5.2.0,6.0.0).

BUILD FAILED
/usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_3.8.1.dist/scripts/build.xml:35:
 The following error occurred while executing this line:
/usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_3.8.1.dist/scripts/build.xml:91:
 The following error occurred while executing this line:
/usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_3.8.1.dist/templates/package-build/customTargets.xml:19:
 The following error occurred while executing this line:
/usr/lib/eclipse/dropins/sdk/plugins/org.eclipse.pde.build_3.8.1.dist/scripts/genericTargets.xml:111:
 Processing inclusion from feature org.eclipse.rse.ftp: Unable to find plug-in: 
org.apache.commons.net_0.0.0. Please check the error log for more details.

Total time: 12 seconds
An error has occurred. See the log file
/eclipse-rse-3.4.2/debian/.eclipse-build/build/home/workspace/.metadata/.log.
jh_compilefeatures: cd debian/.eclipse-build && 
/usr/lib/eclipse/buildscripts/pde-build -o 
/eclipse-rse-3.4.2/debian/.eclipse-build/orbitdeps -j 
-DJ2SE_1.5=/usr/lib/jvm/default-java/java/jre/lib/rt.jar -a "-DjavacTarget=1.5 
-DjavacSource=1.5 -DgenerateFeatureVersionSuffix=true"  -f org.eclipse.rse 
returned exit code 13
debian/rules:8: recipe for target 'override_jh_compilefeatures' failed

Full build log:
https://reproducible.debian.net/rb-pkg/unstable/amd64/eclipse-rse.html

-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
--- End Message ---
--- Begin Message ---
Source: libcommons-net-java
Source-Version: 3.4-2

We believe that the bug you reported is fixed in the latest version of
libcommons-net-java, which is due to be installed in the Debian FTP archive.

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

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

Debian distribution maintenance software
pp.
Emmanuel Bourg  (supplier of updated libcommons-net-java 
package)

(This message was generated automatically 

Bug#808305: marked as done (Missing fwupd breaks upgrade functionality)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 15:54:36 +
with message-id 
and subject line Bug#808305: fixed in gnome-software 3.18.3-3
has caused the Debian Bug report #808305,
regarding Missing fwupd breaks upgrade functionality
to be marked as done.

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

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


-- 
808305: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808305
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gnome-software
Version: 3.18.3-2
Severity: serious


Since upgrading to the version which enabled fwupd support, the upgrade
functionality is broken when fwupd is not installed.

I no longer get any notifications when new packages are awailable and
when opening the Updates tab in the main software just shows an error
messages that the fwupd D-Bus service is not available.

Dez 18 14:59:41 pluto gnome-session[15771]: (org.gnome.Software:15979):
Gs-WARNING **: failed to get updates:
GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name
org.freedesktop.fwupd was not provided by any .service files

I'm marking this as RC since this breaks essential functionality of
gnome-software and I think it shouldn't migrate to testing until we have
a solution for that.

Installing fwupd makes gnome-software work again, so it's clearly a
problem of it not dealing with the case gracefully when fwupd is not
available.

-- 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.3.0-1-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)

Versions of packages gnome-software depends on:
ii  appstream0.9.0-2
ii  dconf-gsettings-backend [gsettings-backend]  0.24.0-2
ii  gnome-software-common3.18.3-2
ii  gsettings-desktop-schemas3.18.1-1
ii  libappstream-glib8   0.5.5-1
ii  libatk1.0-0  2.18.0-1
ii  libc62.21-4
ii  libcairo-gobject21.14.4-1
ii  libcairo21.14.4-1
ii  libfwupd10.6.0-1
ii  libgdk-pixbuf2.0-0   2.32.3-1
ii  libglib2.0-0 2.46.2-1
ii  libgnome-desktop-3-123.18.2-1
ii  libgtk-3-0   3.18.6-1
ii  liblimba00.5.4-1
ii  libpackagekit-glib2-18   1.0.11-1
ii  libpango-1.0-0   1.38.1-1
ii  libpangocairo-1.0-0  1.38.1-1
ii  libpolkit-gobject-1-00.105-14
ii  libsoup2.4-1 2.52.2-1
ii  libsqlite3-0 3.9.2-1
ii  packagekit   1.0.11-1

gnome-software recommends no packages.

Versions of packages gnome-software suggests:
pn  fwupd  
pn  limba  

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: gnome-software
Source-Version: 3.18.3-3

We believe that the bug you reported is fixed in the latest version of
gnome-software, which is due to be installed in the Debian FTP archive.

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

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

Debian distribution maintenance software
pp.
Matthias Klumpp  (supplier of updated gnome-software package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 15 Jan 2016 15:14:42 +0100
Source: gnome-software
Binary: gnome-software gnome-software-common gnome-packagekit-session
Architecture: source all amd64
Version: 3.18.3-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GNOME Maintainers 

Changed-By: Matthias Klumpp 
Description:
 gnome-packagekit-session - Transitional package (gnome-packagekit-session -> 
gnome-software)
 gnome-software - Software Center for GNOME
 gnome-software-common - Software Center for GNOME (common files)
Closes: 808305
Changes:
 gnome-software (3.

Bug#811066: marked as done (FTBFS: Depends: libghc-vector-dev (< 0.11) but 0.11.0.0-1 is to be installed)

2016-01-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jan 2016 15:51:58 +
with message-id 
and subject line Bug#811066: fixed in darcs 2.10.2-1
has caused the Debian Bug report #811066,
regarding FTBFS: Depends: libghc-vector-dev (< 0.11) but 0.11.0.0-1 is to be 
installed
to be marked as done.

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

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


-- 
811066: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811066
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: darcs
Version: 2.10.1-4
Severity: serious

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> The following packages have unmet dependencies:
>  sbuild-build-depends-darcs-dummy : Depends: libghc-vector-dev (< 0.11) but 
> 0.11.0.0-1 is to be installed
> E: Unable to correct problems, you have held broken packages.
> apt-get failed.
> Package installation failed

# apt-get build-dep darcs
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Failed to satisfy Build-Depends dependency for darcs: Installed package 
libghc-vector-dev is too new

-- 
Martin Michlmayr
Linux for HPE Helion, Hewlett Packard Enterprise
--- End Message ---
--- Begin Message ---
Source: darcs
Source-Version: 2.10.2-1

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

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

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

Debian distribution maintenance software
pp.
Joachim Breitner  (supplier of updated darcs package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 15 Jan 2016 14:56:01 +0100
Source: darcs
Binary: darcs
Architecture: source amd64
Version: 2.10.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Haskell Group 

Changed-By: Joachim Breitner 
Description:
 darcs  - distributed, interactive, smart revision control system
Closes: 811066
Changes:
 darcs (2.10.2-1) unstable; urgency=medium
 .
   * New upstream release
   * Patch to allow vector 0.11 (Closes: 811066)
Checksums-Sha1:
 e77b034d708780a893f67755717558846bd0235d 3376 darcs_2.10.2-1.dsc
 ae7e4f98b7dfe92bd136c3515e43ac0234ad5412 1512858 darcs_2.10.2.orig.tar.gz
 3c6d869711f9cef5507dbf1dc0c8dca45fbb2913 15808 darcs_2.10.2-1.debian.tar.xz
 70bee4b03f608cee1275baef06259b1c0687052f 793032 darcs-dbgsym_2.10.2-1_amd64.deb
 22ea2b9d73744e2fdb24c6c7e169a5eb75e37d2c 3097486 darcs_2.10.2-1_amd64.deb
Checksums-Sha256:
 0f9c0c3a27e2ef1f04cf0e7105fdd0e74699ad831b5fcc80f93a3d3240cd8f41 3376 
darcs_2.10.2-1.dsc
 6337d3fac04711fa2ef5813558b409c59166c5599b0c9d68c418d21cdccfb327 1512858 
darcs_2.10.2.orig.tar.gz
 7445b9bca8cfd7231fc050c58cec75da43038b01146e4a4a5e76f11a20495779 15808 
darcs_2.10.2-1.debian.tar.xz
 885df754b0f39bd6ff4bd4e8556f454a18bad31dc702fd40d83fb4d48f973d71 793032 
darcs-dbgsym_2.10.2-1_amd64.deb
 4c63ea3450dd8d3700b01cf8ed500f3225786c01e4dcb277b76ddefad32538bc 3097486 
darcs_2.10.2-1_amd64.deb
Files:
 a61d493844defc9d5a60ada9f042ee92 3376 haskell optional darcs_2.10.2-1.dsc
 46fb8c54d3a367c90c35ed98f9025a4a 1512858 haskell optional 
darcs_2.10.2.orig.tar.gz
 b91a931b2228e8f15825f8b08c26f7f7 15808 haskell optional 
darcs_2.10.2-1.debian.tar.xz
 f7c91bbc683e0b18f23cda6d087f48fa 793032 debug extra 
darcs-dbgsym_2.10.2-1_amd64.deb
 c144dc5e9fa2c33db8282312400ee4aa 3097486 vcs optional darcs_2.10.2-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWmQD5AAoJED2QirPw+/UfjOoP/jZulf/R6bavEYQ9rxTo0fBI
kS89oRe0FeIqgz//SGK7mraBJtOhAUD001+i40B3YNzgz75VKeuvK7qy+r0MWaQY
iX+Uv9S9cH4e3qyVGOkGGD9jhTfoYat1P3BITOzkrzAp6lUOSo0bGJevakQGGbup
qqFsLTGxBcJsD0jSGQQI4LcMGv53l4t/YplxPpvjx32qFmlY7ZM22BuUTMvKp0I0
shcUIX7pWz9NCD54IjVcc9MYfJRxvFYvCStDqcZq4cR7EWIExtgKUfshWcHayiJ1
MtGVnc8l2/FBxlCkfiG493aWsMmMeA0JWIJ2U2GdYumppfGfWrXttKLBNT+tKroP
Z+siAyjBBKKsRcm2OHVmz1afcj3ctWdqJFRMoi8wbYoyiGGaSkO6xueoIbZKzPXW
+pQJRuIIbUReJRKwqK8hm43noEcjEBymQYKJBEB2uSbn/I3SCT8UjMNly73SslNX
29sIkBOm7513zFexrHwS4TtDHNa0veCDpSGRddpwaurqNU6TJ9yTLYkeNHExRzR5
4GkMTLm8aGfBauo8eZ6N+ckx8+CeoY7Q3PhYFvRXybO4/lOjraCyi7J7/MD95euV
ANfkgKyFDAfHEcCDw0ZRGM4v4OShKkxlaG4YFNl/ZaO1VTg23foi9d+vthsJHHhl
nq1wpIlHwGDM1/HevypO
=DTjS
-END PGP SIGNATURE End Message ---


Bug#810897: fonts-tlwg: diff for NMU version 1:0.6.2-2.2

2016-01-15 Thread Theppitak Karoonboonyanan
On Fri, Jan 15, 2016 at 10:37 PM, Iain Lane  wrote:
> On Fri, Jan 15, 2016 at 10:28:24PM +0700, Theppitak Karoonboonyanan wrote:
>> On Fri, Jan 15, 2016 at 12:11 AM, Iain Lane  wrote:
>>
>> > I've prepared an NMU for fonts-tlwg (versioned as 1:0.6.2-2.2) and
>> > uploaded it to DELAYED/2. Please feel free to tell me if I
>> > should delay it longer, or supersede it yourself, or whatever.
>>
>> The fix looks OK. Thanks for fixing it while I'm away.
>> Anyway, shouldn't the NMU version be 1:0.6.2-2.1?
>
> Yeah, it is, that's a typo.
>
> Should I reschedule it to land immediately?

Yes, please go ahead.

Regards,
-- 
Theppitak Karoonboonyanan
http://linux.thai.net/~thep/



Bug#810897: fonts-tlwg: diff for NMU version 1:0.6.2-2.2

2016-01-15 Thread Iain Lane
On Fri, Jan 15, 2016 at 10:28:24PM +0700, Theppitak Karoonboonyanan wrote:
> On Fri, Jan 15, 2016 at 12:11 AM, Iain Lane  wrote:
> 
> > I've prepared an NMU for fonts-tlwg (versioned as 1:0.6.2-2.2) and
> > uploaded it to DELAYED/2. Please feel free to tell me if I
> > should delay it longer, or supersede it yourself, or whatever.
> 
> The fix looks OK. Thanks for fixing it while I'm away.
> Anyway, shouldn't the NMU version be 1:0.6.2-2.1?

Yeah, it is, that's a typo.

Should I reschedule it to land immediately?

-- 
Iain Lane  [ i...@orangesquash.org.uk ]
Debian Developer   [ la...@debian.org ]
Ubuntu Developer   [ la...@ubuntu.com ]


signature.asc
Description: Digital signature


Bug#811092: texlive-binaries: bashism in mktexlsr ("…`…\"…\"…`…")

2016-01-15 Thread Norbert Preining
tag 811092 + pending
thanks

>&& test "x`sed '1s/M̲$//;1q' \"$db_file\"`" != "x$ls_R_magic" \
>&& test "x`sed '1s/M̲$//;1q' \"$db_file\"`" != "x$old_ls_R_magic"; then

Thanks, applied in texlive-bin git repo, commit 96e1042c

Norbert


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




Processed: Re: Bug#811092: texlive-binaries: bashism in mktexlsr ("…`…\"…\"…`…")

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 811092 + pending
Bug #811092 [texlive-binaries] texlive-binaries: bashism in mktexlsr 
("…`…\"…\"…`…")
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
811092: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811092
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed (with 2 errors): Re: Processed (with 2 errors): your mail

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #>> merge 801170 790423
> #> Bug #801170 [libgdk-pixbuf2.0-0] Missing dependency on shared-mime-info
> #> Unable to merge bugs because:
> #> affects of #790423 is 'awesome,icewm' not 'icewm,awesome'
> #> Failed to merge 801170: Did not alter merged bugs.
> forcemerge 790423 801170
Bug #790423 [libgdk-pixbuf2.0-0] Fails to load xpms if mime cache folder is 
missing
Bug #801170 [libgdk-pixbuf2.0-0] Missing dependency on shared-mime-info
Removed indication that 801170 affects awesome and icewm
Added indication that 801170 affects awesome,icewm
Merged 790423 801170
> #>> # https://release.debian.org/testing/rc_policy.txt
> #>> #Packages must include a "Depends:" line listing any other
> #>> #packages they require for operation
> #>> severity 801170 serious
> #> Failed to set severity of Bug 801170 to serious: failed to get lock on
> /org/bugs.debian.org/spool/lock/801170 -- Unable to lock
Unknown command or malformed arguments to command.
> /org/bugs.debian.org/spool/lock/801170 Resource temporarily unavailable.
Unknown command or malformed arguments to command.
> # Let's try that again...
> severity 801170 serious
Bug #801170 [libgdk-pixbuf2.0-0] Missing dependency on shared-mime-info
Bug #790423 [libgdk-pixbuf2.0-0] Fails to load xpms if mime cache folder is 
missing
Severity set to 'serious' from 'important'
Severity set to 'serious' from 'important'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
790423: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=790423
801170: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801170
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#811092: texlive-binaries: bashism in mktexlsr ("…`…\"…\"…`…")

2016-01-15 Thread Thorsten Glaser
Package: texlive-binaries
Version: 2015.20150524.37493-7+b1
Severity: serious
Justification: Policy 10.4

(Note to others: this was pre-approved, don’t downgrade severity)

Hi Norbert, as discussed ahead of time per eMail, here’s the bugreport.

/usr/bin/mktexlsr lines 180 and 181 contain the following code:

   && test "x`sed '1s/M̲$//;1q' \"$db_file\"`" != "x$ls_R_magic" \
   && test "x`sed '1s/M̲$//;1q' \"$db_file\"`" != "x$old_ls_R_magic"; then

(where M̲ is ^M, i.e. ASCII CR)

It is unportable to use double quotes both inside and outside
of (deprecated) accent gravis-style command substitution, as
almost all common shells interpret it different from POSIX,
and historic system shells have been known to use either:

echo "`echo \"foo\"`"

… can output either:
foo
… or:
"foo"

The correct fix here, if you cannot afford to lose either side
of double quotes (as in this case) is to use POSIX shell command
substitutions:

   && test "x$(sed '1s/M̲$//;1q' "$db_file")" != "x$ls_R_magic" \
   && test "x$(sed '1s/M̲$//;1q' "$db_file")" != "x$old_ls_R_magic"; then

Any pre-POSIX shell not supporting $(…) style command substitution
is likely to run into this bug in the first place, so this does not
negatively impact portability either.

(Fun fact: Policy 10.4 implies POSIX, but both bash and dash do
not behave like POSIX, only yash and mksh’s POSIX mode from R52
onwards do, so not using `…` style command substitution really
is the only way out – and the better way anyway.)

I’ve asked the Austin Group to change the POSIX standard to align
with what most shells do, but that does not make this construct
more portable of course, so you should do the change anyway.

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

Kernel: Linux 4.3.0-1-amd64 (SMP w/4 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)

Versions of packages texlive-binaries depends on:
ii  dpkg  1.18.4
ii  install-info  6.0.0.dfsg.1-4
ii  libc6 2.21-6
ii  libfontconfig12.11.0-6.3
ii  libfreetype6  2.6.1-0.1
ii  libgcc1   1:5.3.1-6
ii  libgmp10  2:6.1.0+dfsg-2
ii  libgraphite2-31.3.4-2
ii  libgs99.16~dfsg-2
ii  libharfbuzz-icu0  1.0.1-1+b2
ii  libharfbuzz0b 1.0.1-1+b2
ii  libice6   2:1.0.9-1+b1
ii  libicu55  55.1-7
ii  libkpathsea6  2015.20150524.37493-7+b1
ii  libmpfr4  3.1.3-2
ii  libpaper1 1.1.24+nmu4
ii  libpixman-1-0 0.33.6-1
ii  libpoppler57  0.38.0-2
ii  libpotrace0   1.13-2
ii  libptexenc1   2015.20150524.37493-7+b1
ii  libsm62:1.2.2-1+b1
ii  libstdc++65.3.1-6
ii  libsynctex1   2015.20150524.37493-7+b1
ii  libtexlua52   2015.20150524.37493-7+b1
ii  libx11-6  2:1.6.3-1
ii  libxaw7   2:1.0.13-1
ii  libxext6  2:1.3.3-1
ii  libxi62:1.7.5-1
ii  libxmu6   2:1.1.2-2
ii  libxpm4   1:3.5.11-1+b1
ii  libxt61:1.1.5-1
ii  libzzip-0-13  0.13.62-3
ii  perl  5.22.1-4
ii  t1utils   1.39-2
ii  tex-common6.04
ii  zlib1g1:1.2.8.dfsg-2+b1

Versions of packages texlive-binaries recommends:
ii  python2.7.11-1
pn  ruby  
ii  texlive-base  2015.20151225-1
ii  tk [wish] 8.6.0+9

texlive-binaries suggests no packages.

-- no debconf information



Bug#810897: fonts-tlwg: diff for NMU version 1:0.6.2-2.2

2016-01-15 Thread Theppitak Karoonboonyanan
On Fri, Jan 15, 2016 at 12:11 AM, Iain Lane  wrote:

> I've prepared an NMU for fonts-tlwg (versioned as 1:0.6.2-2.2) and
> uploaded it to DELAYED/2. Please feel free to tell me if I
> should delay it longer, or supersede it yourself, or whatever.

The fix looks OK. Thanks for fixing it while I'm away.
Anyway, shouldn't the NMU version be 1:0.6.2-2.1?

Regards,
-- 
Theppitak Karoonboonyanan
http://linux.thai.net/~thep/



Bug#811091: xtrkcad: missing and outdated licenses.

2016-01-15 Thread Gianfranco Costamagna
Source: xtrkcad
Severity: serious
Justification: Missing/Outdated licenses.

Quoting bug #805528

some licenses are missing:
e.g.
app/bin/bitmaps/SVG/tipofday.svg
+http://creativecommons.org/licenses/publicdomain/"; />
+

app/bin/cblock.c seems to be GPL-2+
also app/bin/cswitchmotor.c

i18n.*
stripmsg.c

well, seems that they switched to GPL-2+ from GPL-2


please fix them.

(and refactor the package if possible from my rules file in #805528)

cheers,

Gianfranco



Bug#810139: (no subject)

2016-01-15 Thread Barry Warsaw
Ultimately, this is a bug in Cython, which upstream is aware of and should fix
by Python 3.6.  I reverted the change in upstream Python 3.5 (and 2.7) since
it's technically a regression.  Matthias has cherry picked the fix for
Ubuntu's Python 3.5; I assume but am not sure if he's also done the same for
Debian.



Bug#809053: xindy FTBFS due to CPPFLAGS containing spaces

2016-01-15 Thread Norbert Preining
Hi Martin,

sorry for the late reply, and thanks for all your testing.

>  * debian/README.source: It is still about old dpatch.

removed.

>  * debian/gbp.conf: Should it be in the sources?

added.

> Did not find other issues, your xindy package really seems ready for
> upload when you want. 

I have prepared a package ready to upload. Can you give it a last look,
same location as before:
deb http://www.preining.info/debian/ xindy main
deb-src http://www.preining.info/debian/ xindy main
version 2.5.1.20160104-1

I still hope that MIA which I have contacted quite some time ago
will answer, but it is now quite some time, and no answer, so
I will just upload, I guess, if you are fine.


Norbert


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




Processed: libipc-signal-perl: diff for NMU version 1.00-6.2

2016-01-15 Thread Debian Bug Tracking System
Processing control commands:

> tags 800303 + patch
Bug #800303 [src:libipc-signal-perl] libipc-signal-perl: Please migrate a 
supported debhelper compat level
Added tag(s) patch.
> tags 800303 + pending
Bug #800303 [src:libipc-signal-perl] libipc-signal-perl: Please migrate a 
supported debhelper compat level
Added tag(s) pending.

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



Bug#800303: libipc-signal-perl: diff for NMU version 1.00-6.2

2016-01-15 Thread gregor herrmann
Control: tags 800303 + patch
Control: tags 800303 + pending

Dear maintainer,

I've prepared an NMU for libipc-signal-perl (versioned as 1.00-6.2) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.  Homepage https://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer -  https://www.debian.org/
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Alanis Morisette: A Man
diff -u libipc-signal-perl-1.00/debian/changelog libipc-signal-perl-1.00/debian/changelog
--- libipc-signal-perl-1.00/debian/changelog
+++ libipc-signal-perl-1.00/debian/changelog
@@ -1,3 +1,12 @@
+libipc-signal-perl (1.00-6.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix "Please migrate a supported debhelper compat level":
+Bump debhelper compatibility level to 9 in debian/{compat,control,rules}.
+(Closes: #800303)
+
+ -- gregor herrmann   Fri, 15 Jan 2016 15:16:17 +0100
+
 libipc-signal-perl (1.00-6.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -u libipc-signal-perl-1.00/debian/control libipc-signal-perl-1.00/debian/control
--- libipc-signal-perl-1.00/debian/control
+++ libipc-signal-perl-1.00/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Roderick Schertler 
 Standards-Version: 3.5.2
-Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-16)
+Build-Depends: debhelper (>= 9), perl (>= 5.6.0-16)
 
 Package: libipc-signal-perl
 Architecture: all
diff -u libipc-signal-perl-1.00/debian/rules libipc-signal-perl-1.00/debian/rules
--- libipc-signal-perl-1.00/debian/rules
+++ libipc-signal-perl-1.00/debian/rules
@@ -11,7 +11,6 @@
 ifneq "" "$(findstring debug,$(DEB_BUILD_OPTIONS))"
 CFLAGS		+= -g
 endif
-export DH_COMPAT	:= 3
 PERL			?= perl
 
 build: $(stamp_build)
only in patch2:
unchanged:
--- libipc-signal-perl-1.00.orig/debian/compat
+++ libipc-signal-perl-1.00/debian/compat
@@ -0,0 +1 @@
+9


signature.asc
Description: Digital Signature


Processed: Explanation

2016-01-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 796956 important
Bug #796956 [libqt5gui5] libqt5gui5 should depend on libqt5xcbqpa5
Bug #802656 [libqt5gui5] libqt5gui5 should depend on libqt5xcbqpa5
Bug #802690 [libqt5gui5] libqt5gui5 should depend on libqt5xcbqpa5
Bug #802763 [libqt5gui5] libqt5gui5 should depend on libqt5xcbqpa5
Severity set to 'important' from 'serious'
Severity set to 'important' from 'serious'
Severity set to 'important' from 'serious'
Severity set to 'important' from 'serious'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
796956: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=796956
802656: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802656
802690: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802690
802763: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802763
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#796956: Explanation

2016-01-15 Thread Lisandro Damián Nicanor Pérez Meyer
severity 796956 important
thanks

OK everyone this is really not a serious bug (actually I still don't think 
this is a bug at all). I'll keep it open until we get Qt 5.6 into the archive 
with a "fix".

Let's start with the basics: sadly libqt5xcbqpa5 is a missnamed package. it 
should have been something along qt5-xcb-platform-plugin... because it's a 
plugin which happens to ship a private lib (that's why we accidentally 
misnamed it).

Now the reasoning: Qt 5 now works with "platform" plugins and not necessarily 
just on X. That means that as long as you don't depend on X-exclusive stuff 
(or any other platform-dependant code) you can run a Qt5 app on the 
frambuffer, Wayland and other interesting places.

So, strictly speaking, libqt5xcbqpa5 (which again should have been named as a 
plugin) is not a strict dependency, and thus the recommendation. And people 
not using recommendations should handle it by hand.

Now what we are planning to do.

Ideally this plugins would be shipped separately as each of them pull 
different dependencies... but we had quite some complaints about this so far.

We checked that if we push all the plugins to libqt5gui5 the total amount of 
extra dependencies is ~3MiB consisting purely in libs (ie, not dragging 
daemons nor any kind of apps) so we will go this way for the time being.

If at some point the amount of extra dependencies increases significantly we 
will split them again. Time will tell.

I'm now leaving this non-bug opened as important just to let people now that 
there is really no bug and how to solve this issue. I will close it with Qt 
5.6.x if we get to merge the plugins.

Kinds regards, Lisandro.

-- 
Cuando tenga duda, utilice la solución mas simple.
  Principio de William Occam, también llamado
  "la navaja de Occam"

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#811036: wireshark-qt: aborts immediately

2016-01-15 Thread Lisandro Damián Nicanor Pérez Meyer
Hi everyone!

Long story short: whenever we push Qt 5.6.x to unstable this will get "fixed", 
at least for some time. Long story below.

On Friday 15 January 2016 11:20:59 Bálint Réczey wrote:
> Hi Olaf,
[snip] 
> > I would argue that showing the GUI is a prerequisite for any of the
> > functionality.  The GUI isn't shown, hence, zero functionality.

[snip]

> It still had wireshark manpage which is not present in wireshark-gtk and
> can be useful, but I see your point. :-)
> 
> > I don't know how wireshark-qt obtained the dependency but it needs that
> > xcb plugin very badly to provide any functionality.  Can't you add the
> > libqt5xcbqpa5 dependency to wireshark-qt (even if only temporarily)?
> 
> I can, but fixing that a fixed libqt5gui5 would reach testing as fast a
> fix in wireshark-qt, thus I would like to as KDE Maintaintainers to share
> their thoughts first.

And here's the main issue: Qt 5 now works with plugins and not necessarily 
just on X. That means that as long as you don't depend on X-exclusive stuff 
you can run a Qt5 app on the frambuffer, Wayland and other interesting 
platforms.

So, strictly speaking, libqt5xcbqpa5 (which should have been named something 
like qt5-xcb-platform-plugin) is not a strict dependency, and thus the 
recommendation. And people not using recommendations should handle it by hand.

Ideally this plugins would be shipped separately as each of them pull 
different dependencies... but we had quite some complaints about this so far.

We checked that if we push all the plugins to libqt5gui5 the total amount of 
extra dependencies is ~3MiB consisting purely in libs (ie, not dragging 
daemons nor any kind of apps) so we will go this way for the time being.

If at some point the amount of extra dependencies increases significantly we 
will split them again. Time will tell.

> IMO packages should not follow how Qt packages are structured to set
> their dependencies, but Qt should provide helper scripts which set the
> needed dependencies for the binary packages. Many other frameworks
> do that.

I'm interested in this, do you have an example for that? Remember we are 
talking about plugins here, not libs, so shlibs/symbols files will not work. 
But if there is a better way out I don't know it would be really cool to study 
it.

> If the KDE team still decides to split the packages with no helper scripts,
> please coordinate with reverse dependencies in advance to avoid bugs
> like this one.

The problem is: which ones? Whatever gets built just with Qt5 can run 
anywhere.

Kinds regards, Lisandro.

-- 
15: Que es el "Correo Electronico"
* El correo que te llega por la corriente
Damian Nadales
http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html

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#805824: Team maintenance in Debian Science for pdl? (Was: pdl: Fails to build with GSL 2)

2016-01-15 Thread Andreas Tille
Hi Henning,

On Fri, Jan 15, 2016 at 12:10:14PM +0100, Henning Glawe wrote:
> On Tue, Jan 12, 2016 at 08:27:44AM +0100, Andreas Tille wrote:
> > since it would be great to fix #805824 soon which seems pretty easy
> > considering the patch I would like to offer an NMU.  However, it would
> > be even more sensible to move the package under Debian Science team
> > maintenance and maintain it in Debian Science Git since it is part of
> > several Debian Science tasks (astronomy, numericalcomputation and
> > viewing).  If I do not hear anything from you until end of this week
> > I would go on to move pdl in Debian Science Git, add you as Uploader
> > and do a team upload (rather than an NMU).
> > 
> > What do you think?
> 
> I'm fine with putting PDL under science-team-maintianance. Go forward and
> I'll join the team ASAP.

I've pushed the package to 

  Vcs-Git: git://anonscm.debian.org/debian-science/packages/pdl.git

did a team upload with the changelog

pdl (1:2.007-5) unstable; urgency=medium

  * Team upload.

  [ Andreas Tille ]
  * Package migrated to Debian Science team Git as Uploader Henning Glawe agreed
  * Add watch file

  [ Sebastiaan Couwenberg ]
  * Update build dependencies for GSL 2, change libgsl0-dev to libgsl-dev.
  * Add patch to fix FTBFS with GSL 2.x.
Closes: #805824

 -- Andreas Tille   Fri, 15 Jan 2016 13:47:31 +0100

and added you to the Debian Science team to grant you commit permissions.

Please consider uploading a new version soon (see d/watch file which I
added).  I usually would also have converted d/rules to use dh and I
would also have normalised d/control by

cme fix dpkg-control

as well as converting d/copyright to DEP5.  Patches are also missing
DEP3 headers.  However, I did not wanted to be too invasive with your
package. :-)

BTW, I have CCed Gregor Hermann since after noticing that the package is
hosted at CPAN this might also be a package for Debian Perl team.  I
trust Gregor to decide whether he want to forward this for discussion or
leave it in Debian Science.

Kind regards

   Andreas.

-- 
http://fam-tille.de



  1   2   >