Bug#793064: [pkg-dhcp-devel] Bug#793064: syntax error in dhclient-script

2015-07-21 Thread Celejar
On Tue, 21 Jul 2015 08:56:20 +0200
Axel Beckert a...@debian.org wrote:

...

 One of these lines from
 resolvconf-1.76.1/etc/dhcp/dhclient-enter-hooks.d/resolvconf look
 promising for this kind of issue:
 
   28 if [ $new_domain_name_servers ]  [ $new_domain_name ] ; then
   32 if [ $new_domain_name_servers ]  [ $new_domain_search ] ; then
   40 [ ! $interface ] || echo -n $R | /sbin/resolvconf -a 
 ${interface}.dhclient
 
 One possibility I can imagine to cause such an issue would be if the
 DHCP server gives out strange values for either the domain name server
 list or the domains itself.

Here's the DHCP negotiation, captured with dhcpdump:

  TIME: 2015-07-21 10:36:02.880
IP: 0.0.0.0 ()  255.255.255.255 (ff:ff:ff:ff:ff:ff)
OP: 1 (BOOTPREQUEST)
 HTYPE: 1 (Ethernet)
  HLEN: 6
  HOPS: 0
   XID: 1fa8c813
  SECS: 4
 FLAGS: 0
CIADDR: 0.0.0.0
YIADDR: 0.0.0.0
SIADDR: 0.0.0.0
GIADDR: 0.0.0.0
CHADDR: :00:00:00:00:00:00:00:00:00:00
 SNAME: .
 FNAME: .
OPTION:  53 (  1) DHCP message type 1 (DHCPDISCOVER)
OPTION:  50 (  4) Request IP address192.168.1.3
OPTION:  12 (  6) Host name lizzie
OPTION:  55 (  7) Parameter Request List  1 (Subnet mask)
 28 (Broadcast address)
  2 (Time offset)
  3 (Routers)
 15 (Domainname)
  6 (DNS server)
 12 (Host name)

---

  TIME: 2015-07-21 10:36:04.168
IP: 192.168.1.1 ()  192.168.1.3 ()
OP: 2 (BOOTPREPLY)
 HTYPE: 1 (Ethernet)
  HLEN: 6
  HOPS: 0
   XID: 1fa8c813
  SECS: 4
 FLAGS: 0
CIADDR: 0.0.0.0
YIADDR: 192.168.1.3
SIADDR: 192.168.1.1
GIADDR: 0.0.0.0
CHADDR: :00:00:00:00:00:00:00:00:00:00
 SNAME: .
 FNAME: .
OPTION:  53 (  1) DHCP message type 2 (DHCPOFFER)
OPTION:  54 (  4) Server identifier 192.168.1.1
OPTION:  51 (  4) IP address leasetime  86400 (24h)
OPTION:   1 (  4) Subnet mask   255.255.255.0
OPTION:  28 (  4) Broadcast address 192.168.1.255
OPTION:   2 (  4) Time offset   0 ()
OPTION:   3 (  4) Routers   192.168.1.1
OPTION:  15 (  4) Domainnamehome
OPTION:   6 (  4) DNS server192.168.1.1
OPTION:  12 (  6) Host name lizzie
---

Anything out of the ordinary here?

Celejar


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



Bug#793136: wmtop: FTBFS with glibc 2.21 and gcc-5

2015-07-21 Thread Daniel Schepler
Source: wmtop
Version: 0.84-10
Severity: normal

From my pbuilder build log, using a setup preferring glibc and gcc-defaults
from experimental:

...
 debian/rules build
dh build
   dh_testdir
   dh_auto_configure
   debian/rules override_dh_auto_build
make[1]: Entering directory '/tmp/buildd/wmtop-0.84'
dh_auto_build -- linux
make -j1 linux
make[2]: Entering directory '/tmp/buildd/wmtop-0.84'
make OS=LINUX all
make[3]: Entering directory '/tmp/buildd/wmtop-0.84'
cc -DLINUX -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -c wmtop.c -o wmtop.o
cc -DLINUX -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -c wmgeneral/wmgeneral.c -o wmgeneral/wmgeneral.o
cc -DLINUX -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -c wmgeneral/misc.c -o wmgeneral/misc.o
In file included from wmgeneral/misc.c:24:0:
wmgeneral/list.h:57:13: warning: inline function 'list_free' declared but never 
defined
 INLINE void list_free(LinkedList* list);
 ^
wmgeneral/list.h:55:19: warning: inline function 'list_find' declared but never 
defined
 INLINE LinkedList*list_find(LinkedList* list, void* elem);
   ^
wmgeneral/list.h:53:13: warning: inline function 'list_mapcar' declared but 
never defined
 INLINE void list_mapcar(LinkedList* list, void(*function)(void*));
 ^
wmgeneral/list.h:51:20: warning: inline function 'list_remove_elem' declared 
but never defined
 INLINE LinkedList *list_remove_elem(LinkedList* list, void* elem);
^
wmgeneral/list.h:49:13: warning: inline function 'list_remove_head' declared 
but never defined
 INLINE void list_remove_head(LinkedList** list);
 ^
wmgeneral/list.h:47:14: warning: inline function 'list_nth' declared but never 
defined
 INLINE void* list_nth(int index, LinkedList* list);
  ^
wmgeneral/list.h:45:12: warning: inline function 'list_length' declared but 
never defined
 INLINE int list_length(LinkedList* list);
^
wmgeneral/list.h:43:20: warning: inline function 'list_cons' declared but never 
defined
 INLINE LinkedList* list_cons(void* head, LinkedList* tail);
^
cc -DLINUX -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -c wmgeneral/list.c -o wmgeneral/list.o
cc -Wl,-z,relro -o wmtop wmtop.o wmgeneral/wmgeneral.o wmgeneral/misc.o 
wmgeneral/list.o -L/usr/X11R6/lib -lXpm -lXext -lX11
wmgeneral/misc.o: In function `parse_command':
/tmp/buildd/wmtop-0.84/wmgeneral/misc.c:122: undefined reference to `list_cons'
/tmp/buildd/wmtop-0.84/wmgeneral/misc.c:126: undefined reference to 
`list_length'
/tmp/buildd/wmtop-0.84/wmgeneral/misc.c:131: undefined reference to 
`list_remove_head'
collect2: error: ld returned 1 exit status
Makefile:28: recipe for target 'wmtop' failed
make[3]: *** [wmtop] Error 1
make[3]: Leaving directory '/tmp/buildd/wmtop-0.84'
Makefile:22: recipe for target 'linux' failed
make[2]: *** [linux] Error 2
make[2]: Leaving directory '/tmp/buildd/wmtop-0.84'
dh_auto_build: make -j1 linux returned exit code 2
debian/rules:7: recipe for target 'override_dh_auto_build' failed
make[1]: *** [override_dh_auto_build] Error 2
make[1]: Leaving directory '/tmp/buildd/wmtop-0.84'
debian/rules:4: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
-- 
Daniel Schepler


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



Bug#792992: gazebo: FTBFS with Bullet 2.83.5

2015-07-21 Thread Andreas Cadhalpun
Hi Markus,

On 21.07.2015 17:50, Markus Koschany wrote:
 Am 21.07.2015 um 17:38 schrieb Andreas Cadhalpun:
 On 20.07.2015 13:45, Markus Koschany wrote:
 gazebo fails to build from source with the latest version of Bullet,
 2.83.5. Please update your package.

 This is fixed upstream [1][2]. Attached is a patch for the debian package.
 
 Great. Thanks.

:-)

 I am sorry for the short notice of this bug report because I became
 only recently aware of gazebo being a new reverse dependency of
 Bullet. The upload to unstable happened in May but the package passed
 the NEW queue only yesterday.

 Preparing library transitions in experimental avoids such problems.
 
 Yup, but since Gazebo has never been in testing, this issue simply fell
 through the cracks and shouldn't cause any delay for the transition at all.

I see. I was just rather surprised to see gazebo failing during the
libav - ffmpeg transition, while it worked fine in my rebuild test a few
days ago.

Best regards,
Andreas


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



Bug#793073: [Pkg-xfce-devel] Bug#793073: appfinder is created under other windows

2015-07-21 Thread Celejar
On Tue, 21 Jul 2015 08:01:04 +0200
Yves-Alexis Perez cor...@debian.org wrote:

 On lun., 2015-07-20 at 22:59 -0400, Celejar wrote:
  
  Not sure whether this is a bug in xfwm4 or xfce4-appfinder. I just upgraded
  from Wheezy to Jessie, and I now find that the xfce4-appfinder (formerly
  xfrun4) window opens under other windows (whether opened with ' F2' or
  'xfrun4' from a terminal). In fact, I first thought that something was 
  broken
  and xfrun wasn't doing anything at all, until I realized that the window was
  indeed opening, just under other windows. This can't be right.
 
 Make sure the way you run it (either from a keyboard shortcut or from a
 panel shortcut) uses startup notification.

Explain please? As I reported, the problem occurs even when simply
typing xfrun4 from a terminal. What should I check?

Celejar


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



Bug#793129: cython: Typecast array to memoryview causes compiler crash

2015-07-21 Thread Dan Greene
Package: cython
Version: 0.22.1-1
Severity: normal

Dear Maintainer,

Trying to cast a pointer to a memoryview object causes a compiler crash.

A simple example that triggers this bug is the one-liner
int[:12]NULL

The result of running cython on this file is a compiler crash that goes
something like this:
Compiler crash in AnalyzeExpressionsTransform
[backtrace follows which I can't easily copy on this machine and redirection
doesn't seem to work]
AttributeError: 'CythonScope' object has no attribute 'viewscope'

The same error happens for both cython and cython3.

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

Kernel: Linux 4.0.0-2-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 cython depends on:
ii  libc6   2.19-18
ii  python  2.7.9-1

Versions of packages cython recommends:
ii  gcc 4:4.9.2-4
ii  python-dev  2.7.9-1

Versions of packages cython suggests:
pn  cython-doc  none

-- no debconf information


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



Bug#793085: ffmpeg: removal of ffmpeg makes files disappear from libav-tools

2015-07-21 Thread Andreas Beckmann
On 2015-07-21 13:58, Reinhard Tartler wrote:
 Well, that was actually the purpose, the idea is to replace qt-faststart
 from libav-tools, and the problem is rather transitional until libav-tools
 is uninstalled. I guess the bug is that we don't ensure that this actually
 takes place. I've therefore made two commits in git:
 
 - one that tightens the Breaks relationship as suggested
Ack.

 - one that renames libav-tools-links to libav-tools in src:ffmpeg.
misses:
Breaks: libav-tools-links
Replaces: libav-tools-links
(unversioned OK, since l-t-l will go away)

Don't forget, needs a pass through NEW.

 This should ensure a comprehensive transition.
 
 Feedback on these two commits are welcome. In particular, I saw a comment
 suggesting to transition command-line interface separately from the library
 interfaces. While this may make the transition slightly smaller, the
 benefits don't outweigh the confusion here, and would rather suggest to
 transition them both at the same time with the 2nd commit mentioned above.

As I understood it from the transition bug, the commandline-tools
transition would be phasing out the libav-tools compat package and
switching the users of it (back) to ffmpeg, and that can happen
independently and later.


Andreas


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



Bug#792992: gazebo: FTBFS with Bullet 2.83.5

2015-07-21 Thread Andreas Cadhalpun
Control: tags -1 fixed-upstream patch

Hi,

On 20.07.2015 13:45, Markus Koschany wrote:
 gazebo fails to build from source with the latest version of Bullet,
 2.83.5. Please update your package.

This is fixed upstream [1][2]. Attached is a patch for the debian package.

 I am sorry for the short notice of this bug report because I became
 only recently aware of gazebo being a new reverse dependency of
 Bullet. The upload to unstable happened in May but the package passed
 the NEW queue only yesterday.

Preparing library transitions in experimental avoids such problems.

Best regards,
Andreas


1: 
https://bitbucket.org/osrf/gazebo/commits/53bd6fdb10e57d8a70353dd02a48e2ff8a8c7f4b
2: 
https://bitbucket.org/osrf/gazebo/commits/893065d361d16cd39dfe25716408e36543272e24

--- /dev/null
+++ b/debian/patches/0010-backport-bullet-fix.patch
@@ -0,0 +1,114 @@
+Description: Use btHingeAccumulatedAngleConstraint if bullet 2.83 or greater is available
+Author: Steve Peters scpet...@osrfoundation.org
+Origin: https://bitbucket.org/osrf/gazebo/commits/53bd6fdb10e57d8a70353dd02a48e2ff8a8c7f4b
+
+diff --git a/cmake/SearchForStuff.cmake b/cmake/SearchForStuff.cmake
+--- a/cmake/SearchForStuff.cmake
 b/cmake/SearchForStuff.cmake
+@@ -379,6 +379,10 @@
+ add_definitions( -DLIBBULLET_VERSION=0.0 )
+ BUILD_WARNING (Bullet  2.82 not found, for bullet physics engine option, please install libbullet2.82-dev.)
+   endif()
++  
++  if (BULLET_VERSION VERSION_GREATER 2.82)
++add_definitions( -DLIBBULLET_VERSION_GT_282 )
++  endif()
+ 
+ else (PKG_CONFIG_FOUND)
+   set (BUILD_GAZEBO OFF CACHE INTERNAL Build Gazebo FORCE)
+diff --git a/gazebo/physics/bullet/BulletHingeJoint.cc b/gazebo/physics/bullet/BulletHingeJoint.cc
+--- a/gazebo/physics/bullet/BulletHingeJoint.cc
 b/gazebo/physics/bullet/BulletHingeJoint.cc
+@@ -104,7 +104,11 @@
+   // If both links exist, then create a joint between the two links.
+   if (bulletChildLink  bulletParentLink)
+   {
++#ifdef LIBBULLET_VERSION_GT_282
++this-bulletHinge = new btHingeAccumulatedAngleConstraint(
++#else
+ this-bulletHinge = new btHingeConstraint(
++#endif
+ *(bulletChildLink-GetBulletLink()),
+ *(bulletParentLink-GetBulletLink()),
+ BulletTypes::ConvertVector3(pivotChild),
+@@ -116,7 +120,11 @@
+   // and the world.
+   else if (bulletChildLink)
+   {
++#ifdef LIBBULLET_VERSION_GT_282
++this-bulletHinge = new btHingeAccumulatedAngleConstraint(
++#else
+ this-bulletHinge = new btHingeConstraint(
++#endif
+ *(bulletChildLink-GetBulletLink()),
+ BulletTypes::ConvertVector3(pivotChild),
+ BulletTypes::ConvertVector3(axisChild));
+@@ -125,7 +133,11 @@
+   // and the world.
+   else if (bulletParentLink)
+   {
++#ifdef LIBBULLET_VERSION_GT_282
++this-bulletHinge = new btHingeAccumulatedAngleConstraint(
++#else
+ this-bulletHinge = new btHingeConstraint(
++#endif
+ *(bulletParentLink-GetBulletLink()),
+ BulletTypes::ConvertVector3(pivotParent),
+ BulletTypes::ConvertVector3(axisParent));
+@@ -209,7 +221,18 @@
+ {
+   math::Angle result;
+   if (this-bulletHinge)
+-result = this-bulletHinge-getHingeAngle() - this-angleOffset;
++  {
++#ifdef LIBBULLET_VERSION_GT_282
++btHingeAccumulatedAngleConstraint* hinge =
++  static_castbtHingeAccumulatedAngleConstraint*(this-bulletHinge);
++if (hinge)
++  result = hinge-getAccumulatedHingeAngle();
++else
++#else
++  result = this-bulletHinge-getHingeAngle();
++#endif
++result -= this-angleOffset;
++  }
+   return result;
+ }
+ 
+diff --git a/test/integration/joint_revolute.cc b/test/integration/joint_revolute.cc
+--- a/test/integration/joint_revolute.cc
 b/test/integration/joint_revolute.cc
+@@ -16,6 +16,7 @@
+ */
+ 
+ #include ServerFixture.hh
++#include gazebo/gazebo_config.h
+ #include gazebo/physics/physics.hh
+ #include SimplePendulumIntegrator.hh
+ #include helper_physics_generator.hh
+@@ -99,12 +100,15 @@
+ 
+ void JointTestRevolute::WrapAngle(const std::string _physicsEngine)
+ {
+-  /// \TODO: bullet hinge angles are wrapped (#1074)
++#ifndef LIBBULLET_VERSION_GT_282
++  /// bullet hinge angles are wrapped for 2.82 and less
+   if (_physicsEngine == bullet)
+   {
+-gzerr  Aborting test for bullet, see issues #1074.\n;
++gzerr  Aborting test for bullet, angle wrapping requires bullet 2.83
++   std::endl;
+ return;
+   }
++#endif
+ 
+   // Load an empty world
+   Load(worlds/empty.world, true, _physicsEngine);
+@@ -127,6 +131,7 @@
+ ASSERT_TRUE(joint != NULL);
+ 
+ // set velocity to 2 pi rad/s and step forward 1.5 seconds.
++// angle should reach 3 pi rad.
+ double vel = 2*M_PI;
+ unsigned int stepSize = 50;
+ unsigned int stepCount = 30;
--- /dev/null
+++ b/debian/patches/0011-backport-bullet-fix2.patch
@@ -0,0 +1,37 @@
+Description: Fix build when compiled against bullet 2.83
+Author: Steve Peters 

Bug#790412: RFS: circus/0.12.0-1

2015-07-21 Thread Andrey Rahmatullin
On Thu, Jul 09, 2015 at 09:31:18AM +0200, David Douard wrote:
 Hi Andrey,
 
 so what's your opinion? Do you want me to make a 0.12.0+dfsg-1 package or 
 is the already uploaded one is eventually enough?
I would change the version for my own package.

 I'm not sure the dfsg flag really makes sense here since the removed files 
 are not removed for licencing reasons, but mainly because they are useless...
If files are removed for other reasons, the accepted practice is to add a
+ds suffix.

 On 07/02/2015 02:34 PM, Julien Cristau wrote:
  On Thu, Jul  2, 2015 at 15:11:34 +0500, Andrey Rahmatullin wrote:
  
  On Thu, Jul 02, 2015 at 09:36:59AM +0200, David Douard wrote:
Version : 0.12.0-1
  I think the common practice is to bump the version after a ftp-team 
  reject.
  Yes, but i've discussed this Julien (jcristau) and we thought it was 
  simpler to 
  keep the same version, since I've modified the Files-Excluded field of 
  the debian/copyright 
  (thus the orig tarball).
  I'm not sure what's the reasoning behind this. If the version was changed
  to 0.12.0+dfsg-1 then it would be OK. Maybe there is some misunderstanding
  here?
 
  The reasoning is it saves having to add versionmangle options in
  d/watch, and I didn't think the version number change was necessary as
  the previous version was never shipped.
  
  Cheers,
  Julien

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Bug#793132: xen: FTBFS with glibc 2.21 and gcc-5

2015-07-21 Thread Daniel Schepler
Source: xen
Version: 4.4.1-9
Severity: normal

From my pbuilder build log, using a setup preferring glibc and gcc-defaults
from experimental:

...
gcc -O2 -fomit-frame-pointer -m64 -fno-strict-aliasing -std=gnu99 -Wall 
-Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable 
-Wno-unused-local-typedefs   -DNDEBUG 
-I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include  
-I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/asm-x86/mach-generic
 
-I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/asm-x86/mach-default
 -msoft-float -fno-stack-protector -fno-exceptions -Wnested-externs 
-DHAVE_GAS_VMX -DHAVE_GAS_EPT -DHAVE_GAS_FSGSBASE -mno-red-zone -mno-sse -fpic 
-fno-asynchronous-unwind-tables -DGCC_HAS_VISIBILITY_ATTRIBUTE -fno-builtin 
-fno-common -Werror -Wredundant-decls -Wno-pointer-arith -pipe -g -D__XEN__ 
-include 
/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/xen/config.h
 -nostdinc -DHAS_ACPI -DHAS_GDBSX -DHAS_PASSTHROUGH -DHAS_PCI -DHAS_IOPORTS 
-MMD -MF .string.o.d -c string.c -o string.o
gcc -O2 -fomit-frame-pointer -m64 -fno-strict-aliasing -std=gnu99 -Wall 
-Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable 
-Wno-unused-local-typedefs   -DNDEBUG 
-I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include  
-I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/asm-x86/mach-generic
 
-I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/asm-x86/mach-default
 -msoft-float -fno-stack-protector -fno-exceptions -Wnested-externs 
-DHAVE_GAS_VMX -DHAVE_GAS_EPT -DHAVE_GAS_FSGSBASE -mno-red-zone -mno-sse -fpic 
-fno-asynchronous-unwind-tables -DGCC_HAS_VISIBILITY_ATTRIBUTE -fno-builtin 
-fno-common -Werror -Wredundant-decls -Wno-pointer-arith -pipe -g -D__XEN__ 
-include 
/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/xen/config.h
 -nostdinc -DHAS_ACPI -DHAS_GDBSX -DHAS_PASSTHROUGH -DHAS_PCI -DHAS_IOPORTS 
-MMD -MF .symbols.o.d -c symbols.c -o symbols.o
symbols.c: In function 'symbols_lookup':
symbols.c:23:61: error: array subscript is above array bounds 
[-Werror=array-bounds]
 #define symbols_address(n) (SYMBOLS_ORIGIN + symbols_offsets[n])
 ^
symbols.c:128:47: note: in expansion of macro 'symbols_address'
 while (low  symbols_address(low - 1) == symbols_address(low))
   ^
symbols.c:23:61: error: array subscript is above array bounds 
[-Werror=array-bounds]
 #define symbols_address(n) (SYMBOLS_ORIGIN + symbols_offsets[n])
 ^
symbols.c:136:13: note: in expansion of macro 'symbols_address'
 if (symbols_address(i)  symbols_address(low)) {
 ^
cc1: all warnings being treated as errors
/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/Rules.mk:165:
 recipe for target 'symbols.o' failed
make[6]: *** [symbols.o] Error 1
make[6]: Leaving directory 
'/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/common'
/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/Rules.mk:153:
 recipe for target 
'/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/common/built_in.o'
 failed
make[5]: *** 
[/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/common/built_in.o]
 Error 2
make[5]: Leaving directory 
'/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/arch/x86'
Makefile:100: recipe for target 
'/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/xen' failed
make[4]: *** 
[/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/xen] Error 
2
make[4]: Leaving directory 
'/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen'
Makefile:26: recipe for target 'build' failed
make[3]: *** [build] Error 2
make[3]: Leaving directory 
'/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen'
debian/rules.real:83: recipe for target 
'debian/stamps/build-hypervisor_amd64_amd64' failed
make[2]: *** [debian/stamps/build-hypervisor_amd64_amd64] Error 2
make[2]: Leaving directory '/tmp/buildd/xen-4.4.1'
debian/rules.gen:50: recipe for target 'build-arch_amd64_none_amd64' failed
make[1]: *** [build-arch_amd64_none_amd64] Error 2
make[1]: Leaving directory '/tmp/buildd/xen-4.4.1'
debian/rules:20: recipe for target 'build-arch' failed
make: *** [build-arch] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
-- 
Daniel Schepler


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



Bug#793137: tulip: FTBFS on armel and armhf - blocks testing migration

2015-07-21 Thread Niels Thykier
Source: tulip
Version: 4.7.0dfsg-1
Severity: serious

The tulip package FTBFS on armel and armhf.  Since it has built there
in the past, this is a regression and by extension prevents migration
to testing.  Here is a (possibly) relevant part of the build log for
armhf.


[...]
In file included from /usr/include/arm-linux-gnueabihf/qt5/QtGui/qopengl.h:97:0,
 from /usr/include/arm-linux-gnueabihf/qt5/QtOpenGL/qgl.h:39,
 from 
/usr/include/arm-linux-gnueabihf/qt5/QtOpenGL/qglframebufferobject.h:37,
 from 
/usr/include/arm-linux-gnueabihf/qt5/QtOpenGL/QGLFramebufferObject:1,
 from 
/«PKGBUILDDIR»/library/tulip-gui/src/GlOffscreenRenderer.cpp:26:
/usr/include/GLES3/gl3.h:931:143: error: 'void __glewTexStorage3D(GLenum, 
GLsizei, GLenum, GLsizei, GLsizei, GLsizei)' redeclared as different kind of 
symbol
 GL_APICALL void GL_APIENTRY glTexStorage3D (GLenum target, GLsizei levels, 
GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth);

   ^
In file included from 
/«PKGBUILDDIR»/library/tulip-gui/src/GlOffscreenRenderer.cpp:24:0:
/usr/include/GL/glew.h:15896:39: note: previous declaration 'void (* 
__glewTexStorage3D)(GLenum, GLsizei, GLenum, GLsizei, GLsizei, GLsizei)'
 GLEW_FUN_EXPORT PFNGLTEXSTORAGE3DPROC __glewTexStorage3D;
   ^
In file included from /usr/include/arm-linux-gnueabihf/qt5/QtGui/qopengl.h:97:0,
 from /usr/include/arm-linux-gnueabihf/qt5/QtOpenGL/qgl.h:39,
 from 
/usr/include/arm-linux-gnueabihf/qt5/QtOpenGL/qglframebufferobject.h:37,
 from 
/usr/include/arm-linux-gnueabihf/qt5/QtOpenGL/QGLFramebufferObject:1,
 from 
/«PKGBUILDDIR»/library/tulip-gui/src/GlOffscreenRenderer.cpp:26:
/usr/include/GLES3/gl3.h:932:134: error: 'void 
__glewGetInternalformativ(GLenum, GLenum, GLenum, GLsizei, GLint*)' redeclared 
as different kind of symbol
 GL_APICALL void GL_APIENTRY glGetInternalformativ (GLenum target, GLenum 
internalformat, GLenum pname, GLsizei bufSize, GLint *params);

  ^
In file included from 
/«PKGBUILDDIR»/library/tulip-gui/src/GlOffscreenRenderer.cpp:24:0:
/usr/include/GL/glew.h:15612:46: note: previous declaration 'void (* 
__glewGetInternalformativ)(GLenum, GLenum, GLenum, GLsizei, GLint*)'
 GLEW_FUN_EXPORT PFNGLGETINTERNALFORMATIVPROC __glewGetInternalformativ;
  ^
make[4]: *** 
[library/tulip-gui/src/CMakeFiles/tulip-gui-4.7.dir/GlMainView.cpp.o] Error 1
make[4]: *** Waiting for unfinished jobs


Please consider fixing this at your earliest convience as it blocks
the fix #778150.

Thanks,
~Niels


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



Bug#793139: ITP: python-dtcwt -- Dual-Tree Complex Wavelet Transform library for Python

2015-07-21 Thread Ghislain Vaillant

Package: wnpp
Severity: wishlist
Owner: Ghislain Antony Vaillant ghisv...@gmail.com

* Package name : python-dtcwt
  Version : 0.10.1
  Upstream Author : Rich Wareham rich.git...@richwareham.com
* URL : https://github.com/rjw57/dtcwt
* License : BSD
  Programming Lang: Python
  Description : Dual-Tree Complex Wavelet Transform library for Python

This library provides support for computing 1D, 2D and 3D dual-tree 
complex wavelet transforms and their inverse in Python, along with a 
collection of DT-CWT algorithms and GPU acceleration.


In my opinion, this package is suitable for team-maintenance under 
Debian science.


Best regards,
Ghislain


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



Bug#777967: libphonenumber: ftbfs with GCC-5

2015-07-21 Thread Matthias Klose
Control: tags -1 + patch

packaged a new upstream version, the library needs a transition anyway. Would it
be ok to upload this version to experimental?

package at
https://launchpad.net/~ci-train-ppa-service/+archive/ubuntu/landing-016/+sourcepub/5227114/+listing-archive-extra


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



Bug#793130: pidgin: No system tray icon on KDE Plasma 5

2015-07-21 Thread Diederik de Haas
Package: pidgin
Version: 2.10.11-1
Severity: normal

KDE Plasma 5 no longer supports xembed based system tray icons and
therefor I can't minimize pidgin to the system tray any more.
By using libappindicator1 this should be fixed.

See
http://blog.martin-graesslin.com/blog/2014/06/where-are-my-systray-icons/
for details on this.


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

Kernel: Linux 4.0.0-2-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 pidgin depends on:
ii  gconf2  3.2.6-3
ii  libatk1.0-0 2.16.0-2
ii  libc6   2.19-19
ii  libcairo2   1.14.2-2
ii  libdbus-1-3 1.8.18-1
ii  libdbus-glib-1-20.102-1
ii  libfontconfig1  2.11.0-6.3
ii  libfreetype62.5.2-4
ii  libgadu31:1.12.0-5
ii  libgdk-pixbuf2.0-0  2.31.4-2
ii  libglib2.0-02.44.1-1.1
ii  libgstreamer0.10-0  0.10.36-1.5
ii  libgtk2.0-0 2.24.28-1
ii  libgtkspell02.0.16-1.1
ii  libice6 2:1.0.9-1+b1
ii  libpango-1.0-0  1.36.8-3
ii  libpangocairo-1.0-0 1.36.8-3
ii  libpangoft2-1.0-0   1.36.8-3
ii  libpurple0  2.10.11-1
ii  libsm6  2:1.2.2-1+b1
ii  libx11-62:1.6.3-1
ii  libxml2 2.9.1+dfsg1-4
ii  libxss1 1:1.2.2-1
ii  perl-base [perlapi-5.20.1]  5.20.2-6
ii  pidgin-data 2.10.11-1

Versions of packages pidgin recommends:
pn  gstreamer0.10-alsa  none
pn  gstreamer0.10-ffmpegnone
ii  gstreamer0.10-plugins-base  0.10.36-2
ii  gstreamer0.10-plugins-good  0.10.31-3+nmu4+b1

Versions of packages pidgin suggests:
ii  libsqlite3-0  3.8.10.2-1

-- no debconf information


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



Bug#793131: avbin: FTBFS: fatal error: avformat.h: No such file or directory

2015-07-21 Thread Andreas Cadhalpun
Package: avbin
Version: 7-4
Tags: patch
Severity: serious
Justification: fails to build from source (but built successfully in the past)
Tags: sid stretch

Dear maintainer,

the libav - ffmpeg transition is ongoing and the headers are now installed
in the multi-arch locations. Thus compiling with '-I/usr/include/libavformat'
doesn't work around the wrong include paths anymore.

Attached patch changes them to the full paths.

I'm sorry for not noticing this earlier (my build chroot was unclean...).

Best regards,
Andreas
--- a/debian/patches/libav.patch
+++ b/debian/patches/libav.patch
@@ -4,17 +4,11 @@ Last-Update: 2014-03-17
 
 --- avbin-7.orig/src/avbin.c
 +++ avbin-7/src/avbin.c
-@@ -25,9 +25,11 @@
- #include avbin.h
- 
- /* ffmpeg */
--#include libavformat/avformat.h
--#include libavcodec/avcodec.h
--#include libavutil/avutil.h
-+#include avformat.h
-+#include avcodec.h
-+#include avutil.h
-+#include swscale.h
+@@ -28,6 +28,8 @@
+ #include libavformat/avformat.h
+ #include libavcodec/avcodec.h
+ #include libavutil/avutil.h
++#include libswscale/swscale.h
 +#include libavutil/dict.h
  
  struct _AVbinFile {


Bug#793129: [Python-apps-team] Bug#793129: cython: Typecast array to memoryview causes compiler crash

2015-07-21 Thread Yaroslav Halchenko
Sounds like upstream issue could you please check with them?

Cheers

On July 21, 2015 10:54:21 AM EDT, Dan Greene dan-gre...@wi.rr.com wrote:
Package: cython
Version: 0.22.1-1
Severity: normal

Dear Maintainer,

Trying to cast a pointer to a memoryview object causes a compiler
crash.

A simple example that triggers this bug is the one-liner
int[:12]NULL

The result of running cython on this file is a compiler crash that goes
something like this:
Compiler crash in AnalyzeExpressionsTransform
[backtrace follows which I can't easily copy on this machine and
redirection
doesn't seem to work]
AttributeError: 'CythonScope' object has no attribute 'viewscope'

The same error happens for both cython and cython3.

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

Kernel: Linux 4.0.0-2-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 cython depends on:
ii  libc6   2.19-18
ii  python  2.7.9-1

Versions of packages cython recommends:
ii  gcc 4:4.9.2-4
ii  python-dev  2.7.9-1

Versions of packages cython suggests:
pn  cython-doc  none

-- no debconf information

___
Python-apps-team mailing list
python-apps-t...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-apps-team

-- 
Sent from a phone which beats iPhone.


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



Bug#258096: If you are interested in partnership,please contact me accordingly.

2015-07-21 Thread Barrister Nana Yaw Ntrakwah.(SAT)
Hello,

It Would interest you to know that my Late client to which i am
representing has a total OF 50KG of Gold that has been  under my
custody as the legal barrister. I am therefore asking for credible
partner.

Interested/prospective partner should please contact me accordingly.

My kind Regards.
Barrister Nana Yaw Ntrakwah.(SAT)
My private email: yawlawcham...@gmail.com


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



Bug#793085: ffmpeg: removal of ffmpeg makes files disappear from libav-tools

2015-07-21 Thread Andreas Cadhalpun
Control: tags -1 pending
Control: severity -1 important

Hi,

On 21.07.2015 13:58, Reinhard Tartler wrote:
 On Tue, Jul 21, 2015, 4:51 AM Andreas Beckmann a...@debian.org 
 mailto:a...@debian.org wrote:
 This is a serious bug violating policy 7.6, see
 
 https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces
 and also see the footnote that describes this incorrect behavior
 https://www.debian.org/doc/debian-policy/footnotes.html#f53

Policy 7.6.1 says:
Normally, Breaks should be used in conjunction with Replaces.

So that's not a 'must' and thus not a release critical bug.

 Well, that was actually the purpose, the idea is to replace qt-faststart from
 libav-tools, and the problem is rather transitional until libav-tools is 
 uninstalled.
 I guess the bug is that we don't ensure that this actually takes place.
 I've therefore made two commits in git:
 
 - one that tightens the Breaks relationship as suggested

That one fixes this bug, so I'm setting the pending tag.

 - one that renames libav-tools-links to libav-tools in src:ffmpeg.

That's fine for me if you prefer it that way.
I just pushed a commit renaming d/libav-tools-links.links to 
d/libav-tools.links,
so that the links don't get lost.

 This should ensure a comprehensive transition.
 
 Feedback on these two commits are welcome. In particular, I saw a comment 
 suggesting
 to transition command-line interface separately from the library interfaces.
 While this may make the transition slightly smaller, the benefits don't 
 outweigh
 the confusion here, and would rather suggest to transition them both at the 
 same
 time with the 2nd commit mentioned above.

The library transition is already happening, so changing that now is fine.

Best regards,
Andreas


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



Bug#793133: ITP: hawtbuf -- Rich byte buffer library

2015-07-21 Thread Emmanuel Bourg
Package: wnpp
Severity: wishlist
Owner: Emmanuel Bourg ebo...@apache.org

* Package name: hawtbuf
  Version : 1.10
  Upstream Author : Hiram Chirino
* URL : https://github.com/fusesource/hawtbuf
* License : Apache-2.0
  Programming Lang: Java
  Description : Rich byte buffer library

The HawtBuf library implements a simple interface with working with
byte arrays. The JDK doesn't come with a built in class that's simply
a `byte[]`, `int offset`, `int length` class and providing a rich
interface similar to what the String class does for `char` arrays.
HawtBuf fills in that void by providing a Buffer class which does
provide that rich interface.

HawtBuf also provides a Java protobuf code generator to make it easy
to encode and decode objects to buffers and back.


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



Bug#793135: ITP: golang-github-mattn-isatty

2015-07-21 Thread Fernando Ike
Package: wnpp
Severity: wishlist
Owner: Fernando Ike f...@midstorm.org

* Package name: golang-github-mattn-isatty
  Version : 0.0~git20150624
  Upstream Author : Fernando Ike
* URL : https://github.com/mattn/go-isatty
* License : MIT
  Programming Lang: Go
  Description : Golang library to implementation isatty interface

This package provides a library to implement isatty interface to Golang
command-line programs. It's a library developed in Golang. If you want
more
information, looking for  in the upstream homepage.


-- 
Fernando Ike
http://www.fernandoike.com


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



Bug#775554: Please update dependency python-aptdaemon-gtk

2015-07-21 Thread Niels Thykier
On Tue, 23 Jun 2015 17:50:55 +0200 Julian Andres Klode j...@debian.org
wrote:
 On Tue, Jun 23, 2015 at 05:48:31PM +0200, Andreas Beckmann wrote:
  [...]
  
  I don't use any (or know anything about any) of these packages - I just
  do some QA :-)
 
 Sure, I meant pere, but forgot to mention it.
 
  
  If you want to speed up src:aptdaemon migrating to testing, you should
  probably NMU isenkram.
 
 I probably should, the aptdaemon upload fixes CVE-2015-1323. 
 
 But I don't know how isenkram works, and I cannot really test it.
 
 -- 
 Julian Andres Klode  - Debian Developer, Ubuntu Member
 
 [...]

Hi,

Are there any updates on this?  It has currently been blocking the fix
for #789162 for a month now.

~Niels


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



Bug#777223: twolame: diff for NMU version 0.3.13-1.2

2015-07-21 Thread Sebastian Ramacher
Control: tags 777223 + pending

Dear maintainer,

since this bugs prevents libavcodec-ffmpeg56 to be co-installable I've prepared
an NMU for twolame (versioned as 0.3.13-1.2) and uploaded it to DELAYED/5.
Please feel free to tell me if I should delay it longer.

Regards.

-- 
Sebastian Ramacher
diff -u twolame-0.3.13/debian/changelog twolame-0.3.13/debian/changelog
--- twolame-0.3.13/debian/changelog
+++ twolame-0.3.13/debian/changelog
@@ -1,3 +1,16 @@
+twolame (0.3.13-1.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+
+  [ Francois Gouget ]
+  * Add multiarch support. (Closes: #777223)
+
+  [ Sebastian Ramacher ]
+  * debian/compat: Bump to 9.
+  * debian/control: B-D on dehelper (= 9).
+
+ -- Sebastian Ramacher sramac...@debian.org  Tue, 21 Jul 2015 17:53:22 +0200
+
 twolame (0.3.13-1.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -u twolame-0.3.13/debian/compat twolame-0.3.13/debian/compat
--- twolame-0.3.13/debian/compat
+++ twolame-0.3.13/debian/compat
@@ -1 +1 @@
-5
+9
diff -u twolame-0.3.13/debian/control twolame-0.3.13/debian/control
--- twolame-0.3.13/debian/control
+++ twolame-0.3.13/debian/control
@@ -3,13 +3,14 @@
 Priority: optional
 Maintainer: Debian MythTV Team pkg-mythtv-maintain...@lists.alioth.debian.org
 Uploaders: Mark Purcell m...@debian.org, Nicholas Humfrey n...@ecs.soton.ac.uk
-Build-Depends: debhelper ( 3.0.0), cdbs, libsndfile1-dev, pkg-config, dh-autoreconf
+Build-Depends: debhelper (= 9), cdbs, libsndfile1-dev, pkg-config, dh-autoreconf
 Homepage: http://www.twolame.org
 Standards-Version: 3.5.2
 
 Package: libtwolame-dev
 Section: libdevel
 Architecture: any
+Multi-Arch: same
 Replaces: libtwolame0-dev
 Conflicts: libtwolame0-dev
 Depends: ${misc:Depends}, libtwolame0 (= ${binary:Version}), libc6-dev, pkg-config
@@ -30,6 +31,8 @@
 Package: libtwolame0
 Section: libs
 Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${misc:Depends}, ${shlibs:Depends}
 Description: MPEG Audio Layer 2 encoding library
  TwoLAME is an optimized MPEG Audio Layer 2 encoder. It is based on tooLAME by 
diff -u twolame-0.3.13/debian/libtwolame-dev.install twolame-0.3.13/debian/libtwolame-dev.install
--- twolame-0.3.13/debian/libtwolame-dev.install
+++ twolame-0.3.13/debian/libtwolame-dev.install
@@ -2,3 +2,3 @@
-usr/lib/pkgconfig/*
-usr/lib/*.a
-usr/lib/*.so
+usr/lib/*/pkgconfig/*
+usr/lib/*/*.a
+usr/lib/*/*.so
diff -u twolame-0.3.13/debian/libtwolame0.install twolame-0.3.13/debian/libtwolame0.install
--- twolame-0.3.13/debian/libtwolame0.install
+++ twolame-0.3.13/debian/libtwolame0.install
@@ -1 +1 @@
-usr/lib/*.so.*
+usr/lib/*/*.so.*
diff -u twolame-0.3.13/debian/rules twolame-0.3.13/debian/rules
--- twolame-0.3.13/debian/rules
+++ twolame-0.3.13/debian/rules
@@ -8 +8 @@
-
+DEB_CONFIGURE_EXTRA_FLAGS += --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH)


signature.asc
Description: Digital signature


Bug#783310: ITP: duc -- a collection of tools for indexing, inspecting and visualizing disk usage

2015-07-21 Thread hpfn
owner 783310 !
thanks


Ok Benoît, I'm taking over.

regards,
Herbert

-
On Tue, 21 Jul 2015 10:07:05 +0200
Benoît SÉRIE bse...@evolix.fr wrote:

 Hello,
 
 On Mon, 29 Jun 2015 15:45:50 -0300 Herbert Parentes Fortes Neto
 (hpfn) h...@ig.com.br wrote:
  Hi Benoît,
  
  I belive you have to file a bug against sponsorship-requests package.
  [...]
 
 I have already a sponsor but he is quite busy...
 If you can upload the package with your mentor faster, you can retake
 the ITP and do the rest.
 
 I could maybe help in the future with co-maintaining.
 
 Regards,
 -- 
 Benoit SÉRIE bse...@evolix.fr – GnuPG: 4096R/56C27D99
 Evolix – Hébergement et Infogérance Open Source http://www.evolix.fr/


-- 
Herbert Parentes Fortes Neto (hpfn)


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



Bug#777223: twolame: diff for NMU version 0.3.13-1.2

2015-07-21 Thread Andreas Cadhalpun
Hi Sebastian,

On 21.07.2015 18:02, Sebastian Ramacher wrote:
 since this bugs prevents libavcodec-ffmpeg56 to be co-installable I've 
 prepared
 an NMU for twolame (versioned as 0.3.13-1.2) and uploaded it to DELAYED/5.
 Please feel free to tell me if I should delay it longer.

Thanks a lot!

Best regards,
Andreas


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



Bug#793121: ocaml-fdkaac: FTBFS in pbuilder: error: configure script must not be run with root user!

2015-07-21 Thread Andreas Beckmann
On 2015-07-21 17:36, Stéphane Glondu wrote:
 Le 21/07/2015 17:21, Stéphane Glondu a écrit :
 ocaml-fdkaac fails to build in pbuilder. [...]

 Running:

   apt-get source -d ocaml-fdkaac
   cowbuilder --build ocaml-fdkaac_0.2.0-1.dsc

 suceeds.
 
 Sorry, I read cowbuilder instead of pbuilder. However, I just tried
 with:
 
   pbuilder --build ocaml-fdkaac_0.2.0-1.dsc
 
 and it also succeeds.

Hmm, weird.

sudo pbuilder --build --basetgz /var/cache/pbuilder/base-sid.tgz
ocaml-fdkaac_0.2.0-1.1.dsc

fails here with pbuilder 0.215+nmu3 (+ the binNMU patch) and sudo
1.8.10p3-1+deb8u2

Added some debugging to override_dh_auto_configure:

Within pbuilder execution the following relevant environment variables
are set, well, interestingly:
USERNAME=root
SUDO_USER=beckmann
LOGNAME=pbuilder
USER=root

But all commands return sane values:
$ id
uid=1234(pbuilder) gid=1234(pbuilder) groups=1234(pbuilder)
$ whoami
pbuilder

So the test seems to be broken, since it uses an unreliable environment
variable ($USER) which may have incorrect content first before checking
whoami.

Andreas

PS: I didn't notice the ./bootstrap script, that does regenerate
configure properly


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



Bug#793128: squid3: CVE-2015-5400: information disclosure due to incorrect handling of peer responses

2015-07-21 Thread Salvatore Bonaccorso
Source: squid3
Version: 3.4.8-6
Severity: important
Tags: security upstream fixed-upstream

Hi,

the following vulnerability was published for squid3.

CVE-2015-5400[0]:
Improper Protection of Alternate Path

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

For further information see:

[0] https://security-tracker.debian.org/tracker/CVE-2015-5400

Please adjust the affected versions in the BTS as needed.

Regards,
Salvatore


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



Bug#793129: Backtrace

2015-07-21 Thread dan-greene

Error compiling Cython file:

...

#print(int[:12]NULL)
int[:12]NULL^


crash.pyx:3:0: Compiler crash in AnalyseExpressionsTransform

File 'Nodes.py', line 421, in analyse_expressions: StatListNode(crash.pyx:3:0)
File 'Nodes.py', line 4662, in analyse_expressions: ExprStatNode(crash.pyx:3:0)
File 'ExprNodes.py', line 434, in analyse_expressions: 
CythonArrayNode(crash.pyx:3:0,
is_temp = True,
mode = 'c',
use_managed_ref = True)
File 'ExprNodes.py', line 9070, in analyse_types: CythonArrayNode(crash.pyx:3:0,
is_temp = True,
mode = 'c',
use_managed_ref = True)
File 'ExprNodes.py', line 9085, in get_cython_array_type: 
CythonArrayNode(crash.pyx:3:0,
is_temp = True,
mode = 'c',
use_managed_ref = True)

Compiler crash traceback from this point on:
  File /usr/lib/python2.7/dist-packages/Cython/Compiler/ExprNodes.py, line 
9085, in get_cython_array_type
return 
env.global_scope().context.cython_scope.viewscope.lookup(array).type
AttributeError: 'CythonScope' object has no attribute 'viewscope'


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



Bug#792619: transition: ffmpeg

2015-07-21 Thread Andreas Cadhalpun
Hi,

On 20.07.2015 16:46, Andreas Cadhalpun wrote:
 It has been uploaded and built on most architectures (still Needs-Build on
 mips and s390x).

It now built on those two, as well.

Unfortunately, three more packages fail to build:
 * avbin: #793131
 * dvbcut: #793089
 * gazebo: #792992

The first two fail, because the libav* headers are now installed
in the multi-arch locations. (For whatever reason, my build chroot
contained a copy of these headers in /usr/include, so I hadn't
noticed this during my rebuild tests.).
The third fails due to the new bullet version.
I've sent patches to all of them.

Best regards,
Andreas


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



Bug#779676: dep5-copyright-license-name-not-unique check is too strict or too severe.

2015-07-21 Thread Javi Merino
On Sun, 7 Jun 2015 17:30:02 -0500 Steve M. Robbins st...@sumost.ca wrote:
 On Wed, Mar 04, 2015 at 07:13:12AM +0900, Charles Plessy wrote:
 
  I think that the dep5-copyright-license-name-not-unique tag should either:
  
   - reduce its severity, as just an advice for readability, or
   - only be issued when the same short name is used with a different 
  description.
 
 Have to agree with Charles.  I got the warning on the attached
 copyright file that uses the suggested GPL-2+ twice and *with the
 same description*.

I fully agree.  This check fails for the examples in [0] so it should
be removed or fixed.  The offending code is in
checks/source-copyright.pm, lines 391-405:

for (@short_licenses) {
$short_licenses_seen{$_} = $i;
if (not defined($full_license)) {
$required_standalone_licenses{$_} = $i;
} else {
if(defined($full_licenses_seen{$_})
and $_ ne 'public-domain') {
tag 'dep5-copyright-license-name-not-unique',
  license: $_, (paragraph at line $current_line);
} else {
$full_licenses_seen{$_} = $current_line;
print(license, seen = $_\n);
}
}
}

This adds the license to $full_licenses_seen when there is an entry
with a License: and then fails if there is another entry with the same
License.  That's perfectly valid, as the examples show.

[0] https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Cheers,
Javi


signature.asc
Description: Digital signature


Bug#765322: RFA: t1utils -- Collection of simple Type 1 font manipulation programs

2015-07-21 Thread Niels Thykier
On 2015-07-21 07:59, Paulo wrote:
 [...]
 
 Hi Niels,
 
 can I help you?
 
 I'm working in this package so in fill days I will upload to mentors
 a NMU with new upstream release version 1.39.
 
 regards,
 kretcheu
 

Hi Paulo,

I would be delighted to have you adopt or co-maintain t1utils. :)

Please note that 1.39 is already in experimental, so it just needs to be
reuploaded to unstable (plus any updates required since the last
update).  The project is maintained in git in collab-maint/t1utils [1]
(though the PTS does not list it, maybe I forgot the headers?).

Thanks,
~Niels

[1] https://anonscm.debian.org/cgit/collab-maint/t1utils.git


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



Bug#793138: systemd-fstab-generator: Checking was requested for ..samba.., but it is not a device.

2015-07-21 Thread Felipe Sateler
Control: tags -1 moreinfo

On 21 July 2015 at 12:55, Stephen Crowley c...@canaccord.com wrote:

 Package: systemd
 Version: 215-17+deb8u1
 Severity: minor

 At https://github.com/NixOS/nixpkgs/pull/5499 it looks like they
 didn't implement the same thing for samba shares

I don't understand what you want to change. Your fstab requires
checking of a samba mount, an systemd is telling you it cannot run
fsck on that. What would you expect systemd to do?

-- 

Saludos,
Felipe Sateler


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



Bug#790297: zzuf still FTBFS with glibc 2.21 and gcc-5

2015-07-21 Thread Daniel Schepler
reopen 790297
found 790297 0.14-1
thanks

I'm still seeing the same testsuite failure in my setup with the new upload:

...
   dh_auto_test
make -j1 check
make[1]: Entering directory '/tmp/buildd/zzuf-0.14'
Making check in src
make[2]: Entering directory '/tmp/buildd/zzuf-0.14/src'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/tmp/buildd/zzuf-0.14/src'
Making check in test
make[2]: Entering directory '/tmp/buildd/zzuf-0.14/test'
make  check-TESTS
make[3]: Entering directory '/tmp/buildd/zzuf-0.14/test'
make[4]: Entering directory '/tmp/buildd/zzuf-0.14/test'
PASS: check-zzuf-A-autoinc
PASS: check-zzuf-f-fuzzing
PASS: check-zzuf-m-md5
PASS: check-zzuf-M-max-memory
PASS: check-zzuf-r-ratio
PASS: check-source
PASS: check-win32
PASS: check-overflow
PASS: check-div0
FAIL: check-utils
PASS: check-mmap
make[5]: Entering directory '/tmp/buildd/zzuf-0.14/test'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/tmp/buildd/zzuf-0.14/test'

Testsuite summary for zzuf 0.14

# TOTAL: 11
# PASS:  10
# SKIP:  0
# XFAIL: 0
# FAIL:  1
# XPASS: 0
# ERROR: 0

See test/test-suite.log

Makefile:712: recipe for target 'test-suite.log' failed
make[4]: *** [test-suite.log] Error 1
make[4]: Leaving directory '/tmp/buildd/zzuf-0.14/test'
Makefile:818: recipe for target 'check-TESTS' failed
make[3]: *** [check-TESTS] Error 2
make[3]: Leaving directory '/tmp/buildd/zzuf-0.14/test'
Makefile:961: recipe for target 'check-am' failed
make[2]: *** [check-am] Error 2
make[2]: Leaving directory '/tmp/buildd/zzuf-0.14/test'
Makefile:402: recipe for target 'check-recursive' failed
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory '/tmp/buildd/zzuf-0.14'
dh_auto_test: make -j1 check returned exit code 2
debian/rules:4: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2

(Sorry it took me a while to get around to retesting and reporting back.)
-- 
Daniel Schepler


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



Bug#793120: Multiarch menu: 32 bits speech options (gtk non-gtk) have the same text

2015-07-21 Thread Cyril Brulebois
(cc-ing debian-accessibility@ for obvious reasons.)

Hi,

Didier 'OdyX' Raboud o...@debian.org (2015-07-21):
 Package: debian-installer
 Version: 20150718
 Severity: normal
 
 in the 'Advanced options' of the multiarch CD, the speech synthesis
 install options for 32 bits have the same text regardless if they are
 for the GTK or non-GTK flavours.

As discussed on IRC, while the following might make you think that, real
life tests with the multi-arch image[1] say that this isn't the case:
| kibi@chloe:~/debian-installer/installer$ diff -Naur 
build/boot/x86/spk{,gtk}.cfg
| --- build/boot/x86/spk.cfg2014-11-14 02:15:40.488593198 +0100
| +++ build/boot/x86/spkgtk.cfg 2014-11-14 02:15:40.488593198 +0100
| @@ -1,4 +1,4 @@
|  label installspk
|   menu label Install with ^speech synthesis
|   kernel ${KERNEL}
| - append desktop=%desktop% ${VIDEO_MODE} initrd=${INITRD} 
speakup.synth=soft --- quiet ${CONSOLE}
| + append desktop=%desktop% ${VIDEO_MODE} initrd=${INITRD_GTK} 
speakup.synth=soft --- quiet ${CONSOLE}

 1. 
http://cdimage.debian.org/cdimage/stretch_di_alpha1/multi-arch/iso-cd/debian-stretch-DI-a1-amd64-i386-netinst.iso

AFAICT only the gtk initramfs contains the needed bits to support speech
synthesis. Maybe we should drop this entry altogether.

Also, we have a Speech synthesis entry for the non-gtk mini.iso;
shouldn't we get rid of it?

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#791803: abook: fails to install: abook.postinst: update-menus: not found

2015-07-21 Thread Salvatore Bonaccorso
Hi Denis,

On Sun, Jul 12, 2015 at 05:00:23PM +0200, Denis Briand wrote:
 tags 791803 pending
 thanks
 
 On Wed, 8 Jul 2015 21:52:56 +0200 Salvatore Bonaccorso car...@debian.org 
 wrote:
  Control: tags -1 + patch
  
  Hi,
  
  On Wed, Jul 08, 2015 at 05:14:42PM +0200, Andreas Beckmann wrote:
   Package: abook
   Version: 0.6.0~pre2-4
   Severity: serious
   User: debian...@lists.debian.org
   Usertags: piuparts
   
   Hi,
   
   during a test with piuparts I noticed your package failed to install. As
   per definition of the release team this makes the package too buggy for
   a release, thus the severity.
   
   From the attached log (scroll to the bottom...):
   
 Selecting previously unselected package abook.
 (Reading database ... 
   (Reading database ... 7475 files and directories currently installed.)
 Preparing to unpack .../abook_0.6.0~pre2-4_amd64.deb ...
 Unpacking abook (0.6.0~pre2-4) ...
 Setting up abook (0.6.0~pre2-4) ...
 /var/lib/dpkg/info/abook.postinst: 58: 
   /var/lib/dpkg/info/abook.postinst: update-menus: not found
 dpkg: error processing package abook (--configure):
  subprocess installed post-installation script returned error exit 
   status 127
 Errors were encountered while processing:
  abook
  
  The problem lies in the postinst. It changed away from testing for the
  hardcoded pathname /usr/bin/update-menus to 
  
  which update-menus
  
  but the argument to -x is not quoted. A simple patch is:
  
  cut-cut-cut-cut-cut-cut-
  diff -Nru abook-0.6.0~pre2/debian/postinst abook-0.6.0~pre2/debian/postinst
  --- abook-0.6.0~pre2/debian/postinst2015-07-06 17:35:05.0 +0200
  +++ abook-0.6.0~pre2/debian/postinst2015-07-08 18:52:55.0 +0200
  @@ -54,6 +54,6 @@
   
   
   # menu entry
  -if [ $action = 'configure' ]  [ -x `which update-menus` ]; then
  +if [ $action = 'configure' ]  [ -x `which update-menus` ]; then
  update-menus 
   fi
  cut-cut-cut-cut-cut-cut-
  
  
  Otherwise switching to a debhelper based packaging using
  dh_installmenu, will replace the right snippet in the postinst as
  well.
 
 Hello,
 Thank you for your bug report Andreas and for your fix Salvatore.
 Yes, switching to debhelper is planned soon.

FYI, currently abook is marked for autoremoval in the next 24h, cf.
https://udd.debian.org/cgi-bin/autoremovals.cgi . Any news on that
update?

Regards,
Salvatore


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



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

2015-07-21 Thread Vincent Danjean
Package: release.debian.org
Tags: jessie
Followup-For: Bug #787952
User: release.debian@packages.debian.org
Usertags: pu

  Here is the updated debdiff with the Breaks/Replaces update:

$ debdiff ocl-icd_2.2.3-1.dsc ocl-icd_2.2.3-1+deb8u1.dsc
diff -Nru ocl-icd-2.2.3/debian/changelog ocl-icd-2.2.3/debian/changelog
--- ocl-icd-2.2.3/debian/changelog  2014-10-05 17:07:47.0 +0200
+++ ocl-icd-2.2.3/debian/changelog  2015-07-21 17:16:19.0 +0200
@@ -1,3 +1,14 @@
+ocl-icd (2.2.3-1+deb8u1) jessie; urgency=medium
+
+  * Fix clSVMFree never called in OpenCL ICD (Closes: #787941)
+The patch is backported from upstream
+  * ocl-icd-opencl-dev: Bump the Breaks/Replaces on nvidia-libopencl1 to
+cover new upstream releases of nvidia-graphics-drivers (304.xx legacy
+series) in wheezy (backported patch from sid by Andreas Beckmann in
+#787952)
+
+ -- Vincent Danjean vdanj...@debian.org  Thu, 11 Jun 2015 16:25:49 +0200
+
 ocl-icd (2.2.3-1) unstable; urgency=medium
 
   * New upstream release
diff -Nru ocl-icd-2.2.3/debian/control ocl-icd-2.2.3/debian/control
--- ocl-icd-2.2.3/debian/control2014-10-05 17:07:47.0 +0200
+++ ocl-icd-2.2.3/debian/control2015-07-21 17:16:19.0 +0200
@@ -41,8 +41,8 @@
 Depends: ${shlibs:Depends}, ${misc:Depends},
  opencl-headers (= 1.2), ocl-icd-libopencl1 (= ${binary:Version})
 Conflicts: opencl-dev
-Breaks: ocl-icd-libopencl1 ( 2.1.3-5~), nvidia-libopencl1 (304.88-7~), 
amd-libopencl1 (1:13.4-4~)
-Replaces: opencl-dev, ocl-icd-libopencl1 ( 2.1.3-5~), nvidia-libopencl1 
(304.88-7~), amd-libopencl1 (1:13.4-4~)
+Breaks: ocl-icd-libopencl1 ( 2.1.3-5~), nvidia-libopencl1 ( 305~), 
amd-libopencl1 ( 1:13.4-4~)
+Replaces: opencl-dev, ocl-icd-libopencl1 ( 2.1.3-5~), nvidia-libopencl1 ( 
305~), amd-libopencl1 ( 1:13.4-4~)
 Recommends: libgl1-mesa-dev | libgl-dev
 Description: OpenCL development files
  OpenCL (Open Computing Language) is a multivendor open standard for
diff -Nru 
ocl-icd-2.2.3/debian/patches/0001-BUG-call-the-function-when-the-return-type-is-void.patch
 
ocl-icd-2.2.3/debian/patches/0001-BUG-call-the-function-when-the-return-type-is-void.patch
--- 
ocl-icd-2.2.3/debian/patches/0001-BUG-call-the-function-when-the-return-type-is-void.patch
  1970-01-01 01:00:00.0 +0100
+++ 
ocl-icd-2.2.3/debian/patches/0001-BUG-call-the-function-when-the-return-type-is-void.patch
  2015-07-21 17:16:19.0 +0200
@@ -0,0 +1,30 @@
+From a224b6edd654ac741af3ea7ca5eb282198e3f5c6 Mon Sep 17 00:00:00 2001
+From: Vincent Danjean vincent.danj...@ens-lyon.org
+Date: Sat, 6 Jun 2015 18:05:23 +0200
+Subject: [PATCH] [BUG] call the function when the return type is void
+
+Before this patch, clSVMFree was never called...
+---
+ icd_generator.rb | 9 +
+ 1 file changed, 5 insertions(+), 4 deletions(-)
+
+--- a/icd_generator.rb
 b/icd_generator.rb
+@@ -574,12 +574,13 @@
+   error_handler.call
+   ocl_icd_loader_gen_source +=   }\n
+   if return_type != void then
+-ocl_icd_loader_gen_source +=   RETURN(((struct _#{fps[0]} 
*)#{fps[1]})-dispatch-#{func_name}(
+-ocl_icd_loader_gen_source += ps.join(, )
+-ocl_icd_loader_gen_source += ));\n
++return_debug=RETURN
+   else
+-ocl_icd_loader_gen_source +=   return;
++return_debug=return
+   end
++  ocl_icd_loader_gen_source +=   #{return_debug}(((struct _#{fps[0]} 
*)#{fps[1]})-dispatch-#{func_name}(
++  ocl_icd_loader_gen_source += ps.join(, )
++  ocl_icd_loader_gen_source += ));\n
+   ocl_icd_loader_gen_source += }\n\n
+ }
+ ocl_icd_loader_gen_source += #pragma GCC visibility push(hidden)\n\n
diff -Nru ocl-icd-2.2.3/debian/patches/series 
ocl-icd-2.2.3/debian/patches/series
--- ocl-icd-2.2.3/debian/patches/series 2014-10-05 17:07:47.0 +0200
+++ ocl-icd-2.2.3/debian/patches/series 2015-07-21 17:16:19.0 +0200
@@ -0,0 +1 @@
+0001-BUG-call-the-function-when-the-return-type-is-void.patch


  Regards,
Vincent

-- System Information:
Debian Release: stretch/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'oldstable-updates'), (500, 
'oldoldstable'), (500, 'unstable'), (500, 'testing'), (500, 'stable'), (500, 
'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386, armel, mipsel

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


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



Bug#793130: pidgin: No system tray icon on KDE Plasma 5

2015-07-21 Thread Diederik de Haas
On Tuesday 21 July 2015 15:34:13 Ari Pollak wrote:
 According to that page, it seems like there would just need to be patches
 applied at the GTK level.

I believe that pidgin should be compiled with support for libappindicator for 
it to work. I installed libappindicator1 and that didn't solve the problem.

By compiling/installing https://github.com/philipl/pidgin-indicator I now do 
have an extra pidgin plugin and system tray support in Plasma 5.
It would be great if it could be provided in Debian OOTB though.


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


Bug#793172: pavucontrol spams console with GLib-GObhect-WARNING messages

2015-07-21 Thread Peter Chubb
Package: pavucontrol
Version: 3.0-3
Severity: minor

Dear Maintainer,

When I do
 pavucontrol 
I see:
(pavucontrol:15877): GLib-GObject-WARNING **: The property GtkMisc:xpad is 
deprecated and shouldn't be used anymore. It will be removed in a future 
version.

(pavucontrol:15877): GLib-GObject-WARNING **: The property GtkMisc:ypad is 
deprecated and shouldn't be used anymore. It will be removed in a future 
version.

(pavucontrol:15877): GLib-GObject-WARNING **: The property 
GtkAlignment:bottom-padding is deprecated and shouldn't be used anymore. It 
will be removed in a future version.

(pavucontrol:15877): GLib-GObject-WARNING **: The property 
GtkAlignment:left-padding is deprecated and shouldn't be used anymore. It will 
be removed in a future version.

(pavucontrol:15877): GLib-GObject-WARNING **: The property 
GtkAlignment:right-padding is deprecated and shouldn't be used anymore. It will 
be removed in a future version.

(pavucontrol:15877): GLib-GObject-WARNING **: The property 
GtkContainer:resize-mode is deprecated and shouldn't be used anymore. It will 
be removed in a future version.

(pavucontrol:15877): GLib-GObject-WARNING **: The property GtkImage:stock is 
deprecated and shouldn't be used anymore. It will be removed in a future 
version.

(pavucontrol:15877): GLib-GObject-WARNING **: The property GtkButton:xalign is 
deprecated and shouldn't be used anymore. It will be removed in a future 
version.



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

Kernel: Linux 4.1.0-rc8+ (SMP w/8 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages pavucontrol depends on:
ii  libatk1.0-0  2.16.0-2
ii  libatkmm-1.6-1   2.22.7-2.1
ii  libc62.19-19
ii  libcairo-gobject21.14.2-2
ii  libcairo21.14.2-2
ii  libcairomm-1.0-1 1.10.0-1.1
ii  libcanberra-gtk3-0   0.30-2.1
ii  libcanberra0 0.30-2.1
ii  libgcc1  1:5.1.1-14
ii  libgdk-pixbuf2.0-0   2.31.4-2
ii  libglib2.0-0 2.44.1-1.1
ii  libglibmm-2.4-1c2a   2.44.0-1
ii  libgtk-3-0   3.16.5-1
ii  libgtkmm-3.0-1   3.16.0-1
ii  libpango-1.0-0   1.36.8-3
ii  libpangocairo-1.0-0  1.36.8-3
ii  libpangomm-1.4-1 2.36.0-1
ii  libpulse-mainloop-glib0  6.0-2
ii  libpulse06.0-2
ii  libsigc++-2.0-0c2a   2.4.1-1
ii  libstdc++6   5.1.1-14
ii  libx11-6 2:1.6.3-1

Versions of packages pavucontrol recommends:
ii  pulseaudio  6.0-2

pavucontrol suggests no packages.

-- no debconf information


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



Bug#793168: [Pkg-zsh-devel] Bug#793168: zsh: expand-substitution-on-TAB broke for $(()) in 5.0.8

2015-07-21 Thread Andy Isaacson
On Wed, Jul 22, 2015 at 01:40:51AM +0200, Axel Beckert wrote:
  It does still work right with ${VAR} and $[5+8].
 
 This very likely is related to or caused by the changed parsing of
 $((…)) in 5.0.8.

I read the changelog briefly before filing, but don't understand the
state of things well enough to point in particular ... and the
sourceforge git repo seems to be down (at least the web page giving the
URL is down) so I wasn't able to go read the diffs. :)

 I remember that there were also $((…)) related fixes after 5.0.8, but
 I need to check the details.
 
  seems like setopt might influence this behavior:
 
 Likely, yes. But I can reproduce the issue here, too, with the same
 configuration as on 5.0.7.

Glad to hear it's not just me. :)

 Workaround for now: Use Ctrl-X * instead of Tab. This still seems to
 work.

Thanks!  The workaround I'm using for now is $[] which is semantically
equivalent enough for my needs.

-andy


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



Bug#751776: time: diff for NMU version 1.7-25.1

2015-07-21 Thread Bob Proulx
Helmut Grohne wrote:
 I've prepared an NMU for time (versioned as 1.7-25.1) which marks the
 time package Multi-Arch: foreign and uploaded it to DELAYED/15. Without
 this change, the bash package FTCBFS. Please feel free to tell me if I
 should delay it longer.

I think that will be perfectly fine.  Thank you for doing that.  You
could upload it to a shorter delay if you desired to get it through
earlier.  I am currently on travel (camping at the EAA Fly-In at
Oshkosh) and have only very poor network connectivity and even less
ability to do anything more until I am back home again next week.

Thanks!
Bob


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



Bug#793177: uvccapture: Manpage does not mention the -G option

2015-07-21 Thread Dima Kogan
Package: uvccapture
Version: 0.5-3+b1
Severity: normal

Hi. 'uvccapture -h' mentions the -G option to set the gain, but the
manpage does not. This is confusing since the option DOES exist and
works.

Thanks!


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



Bug#793155: incorrectly follows symlinks (patch provided)

2015-07-21 Thread Chris Vanden Berghe
Thank you for reporting (and the patch). I have fwd'ed the report to the
upstream author.

https://github.com/schani/metapixel/issues/4

---
On Wednesday, July 22, 2015 03:50 AM, Yaroslav Halchenko wrote:
 Package: metapixel
 Version: 1.0.2-7.1+b2
 Severity: normal
 Tags: patch upstream

 If original file comes from another directory, symlink would be relative to 
 that directory, not a current one, so mere symlink path would not be 
 sufficient.  With a given patch it would get a full path to the original file

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

 Kernel: Linux 3.17-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 metapixel depends on:
 ii  libc62.19-18
 ii  libgif4  4.1.6-11
 ii  libjpeg62-turbo  1:1.4.0-7
 ii  libpng12-0   1.2.50-2+b2
 ii  zlib1g   1:1.2.8.dfsg-2+b1

 metapixel recommends no packages.

 metapixel suggests no packages.

 -- no debconf information


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



Bug#793136: wmtop: FTBFS with glibc 2.21 and gcc-5

2015-07-21 Thread Doug Torrance
Control: tags -1 pending

On 07/21/2015 09:54 AM, Daniel Schepler wrote:
 Source: wmtop
 Version: 0.84-10
 Severity: normal
 
 From my pbuilder build log, using a setup preferring glibc and gcc-defaults
 from experimental:
 
 ...
  debian/rules build
 dh build
dh_testdir
dh_auto_configure
debian/rules override_dh_auto_build
 make[1]: Entering directory '/tmp/buildd/wmtop-0.84'
 dh_auto_build -- linux
 make -j1 linux
 make[2]: Entering directory '/tmp/buildd/wmtop-0.84'
 make OS=LINUX all
 make[3]: Entering directory '/tmp/buildd/wmtop-0.84'
 cc -DLINUX -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat 
 -Werror=format-security -c wmtop.c -o wmtop.o
 cc -DLINUX -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat 
 -Werror=format-security -c wmgeneral/wmgeneral.c -o wmgeneral/wmgeneral.o
 cc -DLINUX -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat 
 -Werror=format-security -c wmgeneral/misc.c -o wmgeneral/misc.o
 In file included from wmgeneral/misc.c:24:0:
 wmgeneral/list.h:57:13: warning: inline function 'list_free' declared but 
 never defined
  INLINE void list_free(LinkedList* list);
  ^
 wmgeneral/list.h:55:19: warning: inline function 'list_find' declared but 
 never defined
  INLINE LinkedList*list_find(LinkedList* list, void* elem);
^
 wmgeneral/list.h:53:13: warning: inline function 'list_mapcar' declared but 
 never defined
  INLINE void list_mapcar(LinkedList* list, void(*function)(void*));
  ^
 wmgeneral/list.h:51:20: warning: inline function 'list_remove_elem' declared 
 but never defined
  INLINE LinkedList *list_remove_elem(LinkedList* list, void* elem);
 ^
 wmgeneral/list.h:49:13: warning: inline function 'list_remove_head' declared 
 but never defined
  INLINE void list_remove_head(LinkedList** list);
  ^
 wmgeneral/list.h:47:14: warning: inline function 'list_nth' declared but 
 never defined
  INLINE void* list_nth(int index, LinkedList* list);
   ^
 wmgeneral/list.h:45:12: warning: inline function 'list_length' declared but 
 never defined
  INLINE int list_length(LinkedList* list);
 ^
 wmgeneral/list.h:43:20: warning: inline function 'list_cons' declared but 
 never defined
  INLINE LinkedList* list_cons(void* head, LinkedList* tail);
 ^
 cc -DLINUX -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat 
 -Werror=format-security -c wmgeneral/list.c -o wmgeneral/list.o
 cc -Wl,-z,relro -o wmtop wmtop.o wmgeneral/wmgeneral.o wmgeneral/misc.o 
 wmgeneral/list.o -L/usr/X11R6/lib -lXpm -lXext -lX11
 wmgeneral/misc.o: In function `parse_command':
 /tmp/buildd/wmtop-0.84/wmgeneral/misc.c:122: undefined reference to 
 `list_cons'
 /tmp/buildd/wmtop-0.84/wmgeneral/misc.c:126: undefined reference to 
 `list_length'
 /tmp/buildd/wmtop-0.84/wmgeneral/misc.c:131: undefined reference to 
 `list_remove_head'
 collect2: error: ld returned 1 exit status
 Makefile:28: recipe for target 'wmtop' failed
 make[3]: *** [wmtop] Error 1
 make[3]: Leaving directory '/tmp/buildd/wmtop-0.84'
 Makefile:22: recipe for target 'linux' failed
 make[2]: *** [linux] Error 2
 make[2]: Leaving directory '/tmp/buildd/wmtop-0.84'
 dh_auto_build: make -j1 linux returned exit code 2
 debian/rules:7: recipe for target 'override_dh_auto_build' failed
 make[1]: *** [override_dh_auto_build] Error 2
 make[1]: Leaving directory '/tmp/buildd/wmtop-0.84'
 debian/rules:4: recipe for target 'build' failed
 make: *** [build] Error 2
 dpkg-buildpackage: error: debian/rules build gave error exit status 2
 

This is a known problem with Window Maker dockapps using the wmgeneral
library.  Many of these have been fixed upstream [1].  A new version of
the package which fixes this bug will be uploaded soon.

Thanks for the report!
Doug

[1] http://repo.or.cz/w/dockapps.git/commitdiff/7d77c17


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



Bug#793113: libqt4-sql: Doesn't install Depends: libqtcore4 (= 4:4.8.6+…+dfsg-3) but 4:4.8.6+…+dfsg-3+deb8u1 is to be installed

2015-07-21 Thread Lisandro Damián Nicanor Pérez Meyer
On Tuesday 21 July 2015 12:56:17 Leonardo Boselli wrote:
 Package: libqt4-sql
 Severity: normal
 Tags: d-i
[snip]
 most modules complains: that the dependency is unmet. Could be possible is
 a question of naming of libqtcore4 (that in jessie now is …+dfsg3 while
 modules ask for …+dfsg3+deb9a1 ? )

Hi Leonardo! Stable actually has *all* the Qt4 stack at version 4:4.8.6+git64-
g5dc8b2b+dfsg-3+deb8u1. So I see two possibilities:

1) You need to dist-upgrade your installation before installing paraview, and 
you made a typo by writing +dfsg3+deb9a1.

2) You did not made a typo by writing +dfsg3+deb9a1 and you got an unnoficial 
Qt4 version from somewhere else.

In both cases this is not a Debian bug but, I'm afraid, a problem on your 
side.

I'm so closing this bug.

Kinds regards, Lisandro.

-- 

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#793174: x11-session-utils: cpp dependency is unnecessary

2015-07-21 Thread Michael Gilbert
package: x11-session-utils
version: 7.7+2
severity: normal

None of the utilities in x11-session-utils use or need cpp to function
correctly, so it would be useful to remove it as a dependency.

Best wishes,
Mike


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



Bug#793174: x11-session-utils: cpp dependency is unnecessary

2015-07-21 Thread Michael Gilbert
control: tag -1 patch

On Tue, Jul 21, 2015 at 11:25 PM, Michael Gilbert wrote:
 None of the utilities in x11-session-utils use or need cpp to function
 correctly, so it would be useful to remove it as a dependency.

And here is the trivial patch.

Best wishes,
Mike
diff -Nru x11-session-utils-7.7+2/debian/changelog x11-session-utils-7.7+2.1/debian/changelog
--- x11-session-utils-7.7+2/debian/changelog	2015-05-01 12:22:48.0 +
+++ x11-session-utils-7.7+2.1/debian/changelog	2015-07-22 03:32:34.0 +
@@ -1,3 +1,10 @@
+x11-session-utils (7.7+2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Remove unneeded cpp dependency (closes: #793174).
+
+ -- Michael Gilbert mgilb...@debian.org  Wed, 22 Jul 2015 03:20:50 +
+
 x11-session-utils (7.7+2) unstable; urgency=medium
 
   * Let uscan verify tarball signatures.
diff -Nru x11-session-utils-7.7+2/debian/control x11-session-utils-7.7+2.1/debian/control
--- x11-session-utils-7.7+2/debian/control	2015-05-01 11:44:21.0 +
+++ x11-session-utils-7.7+2.1/debian/control	2015-07-22 03:21:40.0 +
@@ -33,7 +33,6 @@
 Depends:
  ${shlibs:Depends},
  ${misc:Depends},
- cpp,
 Description: X session utilities
  This package provides the X session manager and related tools:
   - rstart;


Bug#793089: dvbcut: FTBFS against ffmpeg

2015-07-21 Thread Andreas Cadhalpun
Control: tags -1 patch

Hi,

Sorry for not noticing this earlier (my build chroot was unclean...).

On 21.07.2015 11:05, Sebastian Ramacher wrote:
 dvbcut failed to build on the buildds for the libav-ffmpeg transition:
 | g++ -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wall 
 -DPACKAGE_NAME=\\ -DPACKAGE_TARNAME=\\ -DPACKAGE_VERSION=\\ 
 -DPACKAGE_STRING=\\ -DPACKAGE_BUGREPORT=\\ -DPACKAGE_URL=\\ 
 -DHAVE_LIB_SWSCALE=1 -DHAVE_LIB_MAD=1 -DHAVE_LIB_A52=1 -DHAVE_LIB_AO=1 
 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 
 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 
 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_AO_AO_H=1 -DHAVE_MAD_H=1 
 -DHAVE_STDINT_H=1 -DHAVE_A52DEC_A52_H=1 -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 
 -DHAVE_SYS_PARAM_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 
 -D__STDC_LIMIT_MACROS=1 -D__STDC_CONSTANT_MACROS=1 -D_FILE_OFFSET_BITS=64 
 -D_FORTIFY_SOURCE=2 -I/usr/include -I/usr/include/ffmpeg -I/include 
 -DQT_SHARED -DQT3_SUPPORT -DQT_SHARED -I/usr/include/qt4 
 -I/usr/include/qt4/Qt3Support -I/usr/include/qt4 -I/usr/include/qt4/QtNetwork 
 -I/usr/include/qt4 -I/usr/include/qt4/QtSql -I/usr/include/qt4 
 -I/usr/include/qt4/QtGui 
 -
I/usr/include/qt4 -I/usr/include/qt4/QtXml -I/usr/include/qt4 
-I/usr/include/qt4/QtCore  -I. -D_FORTIFY_SOURCE=2 -I/usr/include 
-I/usr/include/ffmpeg -I/include -DQT_SHARED -DQT3_SUPPORT -DQT_SHARED 
-I/usr/include/qt4 -I/usr/include/qt4/Qt3Support -I/usr/include/qt4 
-I/usr/include/qt4/QtNetwork -I/usr/include/qt4 -I/usr/include/qt4/QtSql 
-I/usr/include/qt4 -I/usr/include/qt4/QtGui -I/usr/include/qt4 
-I/usr/include/qt4/QtXml -I/usr/include/qt4 -I/usr/include/qt4/QtCore  -I.  -c 
-o differenceimageprovider.o differenceimageprovider.cpp
 | In file included from differenceimageprovider.cpp:24:0:
 | avframe.h:28:21: fatal error: swscale.h: No such file or directory
 |  #include swscale.h
 |  ^
 | compilation terminated.

This is caused by the headers now being installed in the multi-arch locations.
Attached is a patch fixing this by using the full libswscale/swscale.h path.

Best regards,
Andreas
--- /dev/null
+++ b/debian/patches/fix_ffmpeg_includes.patch
@@ -0,0 +1,62 @@
+Description: Use full include path for FFmpeg libraries
+
+Author: Andreas Cadhalpun andreas.cadhal...@googlemail.com
+Last-Update: 2015-07-21
+
+--- dvbcut-0.5.4+svn178.orig/src/avframe.h
 dvbcut-0.5.4+svn178/src/avframe.h
+@@ -25,7 +25,7 @@ extern C {
+ #include libavcodec/avcodec.h
+ #include libavutil/mem.h
+ #ifdef HAVE_LIB_SWSCALE
+-#include swscale.h
++#include libswscale/swscale.h
+ #endif
+ }
+ 
+--- dvbcut-0.5.4+svn178.orig/src/lavfmuxer.cpp
 dvbcut-0.5.4+svn178/src/lavfmuxer.cpp
+@@ -19,8 +19,8 @@
+ /* $Id$ */
+ 
+ extern C {
+-#include avformat.h
+-#include avcodec.h
++#include libavformat/avformat.h
++#include libavcodec/avcodec.h
+ }
+ #include cstring
+ #include utility
+--- dvbcut-0.5.4+svn178.orig/src/lavfmuxer.h
 dvbcut-0.5.4+svn178/src/lavfmuxer.h
+@@ -22,7 +22,7 @@
+ #define _DVBCUT_LAVFMUXER_H
+ 
+ extern C {
+-#include avformat.h
++#include libavformat/avformat.h
+ }
+ 
+ #include mpgfile.h
+--- dvbcut-0.5.4+svn178.orig/src/main.cpp
 dvbcut-0.5.4+svn178/src/main.cpp
+@@ -33,7 +33,7 @@
+ 
+ #include qapplication.h
+ extern C {
+-#include avformat.h
++#include libavformat/avformat.h
+ }
+ #include qimage.h
+ #include qsettings.h
+--- dvbcut-0.5.4+svn178.orig/src/streamdata.h
 dvbcut-0.5.4+svn178/src/streamdata.h
+@@ -24,7 +24,7 @@
+ #include string
+ #include list
+ extern C {
+-#include avformat.h
++#include libavformat/avformat.h
+ }
+ 
+ #include port.h
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -8,3 +8,4 @@ bug753347_initialize-pkt-variable-in-mpgfile__recodevideo-to-avoid-crash.patch
 715843_do-not-access-argv-beyond-last-item.patch
 753369_mplayer2-uses-different-indices-for-audio-streams.patch
 avoid-PATH_MAX-macro.patch
+fix_ffmpeg_includes.patch


Bug#793121: ocaml-fdkaac: FTBFS in pbuilder: error: configure script must not be run with root user!

2015-07-21 Thread Stéphane Glondu
tags 793121 + unreproducible
thanks

Le 21/07/2015 15:22, Andreas Beckmann a écrit :
 ocaml-fdkaac fails to build in pbuilder. [...]

Running:

  apt-get source -d ocaml-fdkaac
  cowbuilder --build ocaml-fdkaac_0.2.0-1.dsc

suceeds.

 pbuilder is definitively not running the build as root [...]

Are you sure of that? pbuilder doesn't prevent building as root per se,
it depends on how you use it.


BTW, is FTBFS as root really RC?


Cheers,

-- 
Stéphane


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



Bug#793121: ocaml-fdkaac: FTBFS in pbuilder: error: configure script must not be run with root user!

2015-07-21 Thread Stéphane Glondu
Le 21/07/2015 17:21, Stéphane Glondu a écrit :
 ocaml-fdkaac fails to build in pbuilder. [...]
 
 Running:
 
   apt-get source -d ocaml-fdkaac
   cowbuilder --build ocaml-fdkaac_0.2.0-1.dsc
 
 suceeds.

Sorry, I read cowbuilder instead of pbuilder. However, I just tried
with:

  pbuilder --build ocaml-fdkaac_0.2.0-1.dsc

and it also succeeds.


Cheers,

-- 
Stéphane


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



Bug#751776: time: diff for NMU version 1.7-25.1

2015-07-21 Thread Helmut Grohne
Dear time maintainer,

I've prepared an NMU for time (versioned as 1.7-25.1) which marks the
time package Multi-Arch: foreign and uploaded it to DELAYED/15. Without
this change, the bash package FTCBFS. Please feel free to tell me if I
should delay it longer.

Helmut
diff -Nru time-1.7/debian/changelog time-1.7/debian/changelog
--- time-1.7/debian/changelog	2014-02-10 00:46:44.0 +0100
+++ time-1.7/debian/changelog	2015-07-21 15:52:03.0 +0200
@@ -1,3 +1,13 @@
+time (1.7-25.1) unstable; urgency=medium
+
+  [ Helmut Grohne ]
+  * Non-maintainer upload.
+
+  [ Peter Pentchev ]
+  * Mark the binary package as Multi-Arch: foreign.  (Addresses: #751776)
+
+ -- Helmut Grohne hel...@subdivi.de  Tue, 21 Jul 2015 15:52:01 +0200
+
 time (1.7-25) unstable; urgency=medium
 
   * Patch for HZ and time.h inclusion.  Good in general and needed for
diff -Nru time-1.7/debian/control time-1.7/debian/control
--- time-1.7/debian/control	2014-02-10 00:31:31.0 +0100
+++ time-1.7/debian/control	2015-07-21 15:39:13.0 +0200
@@ -7,6 +7,7 @@
 
 Package: time
 Architecture: any
+Multi-Arch: foreign
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: GNU time program for measuring CPU resource usage
  The 'time' command runs another program, then displays information


Bug#793134: wolfssl: FTBFS with glibc 2.21 and gcc-5

2015-07-21 Thread Daniel Schepler
Source: wolfssl
Version: 3.4.8+dfsg-1
Severity: normal

From my pbuilder build log, using a setup preferring glibc and gcc-defaults
from experimental:

...
   dh_auto_test -O--parallel
make -j8 test
make[1]: Entering directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make -j9  check-am
make[2]: Entering directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make[2]: warning: -jN forced in submake: disabling jobserver mode.
make -j9  testsuite/testsuite.test tests/unit.test
make[3]: Entering directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make[3]: warning: -jN forced in submake: disabling jobserver mode.
make[3]: 'testsuite/testsuite.test' is up to date.
make[3]: 'tests/unit.test' is up to date.
make[3]: Leaving directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make -j9  check-TESTS
make[3]: Entering directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make[3]: warning: -jN forced in submake: disabling jobserver mode.
make[4]: Entering directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make[4]: warning: -jN forced in submake: disabling jobserver mode.
FAIL: testsuite/testsuite.test
FAIL: tests/unit.test
make[5]: Entering directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make[5]: warning: -jN forced in submake: disabling jobserver mode.
make -j9  all-am
make[6]: Entering directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make[6]: warning: -jN forced in submake: disabling jobserver mode.
make[6]: Leaving directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
make[5]: Leaving directory '/tmp/buildd/wolfssl-3.4.8+dfsg'

Testsuite summary for wolfssl 3.4.8

# TOTAL: 2
# PASS:  0
# SKIP:  0
# XFAIL: 0
# FAIL:  2
# XPASS: 0
# ERROR: 0

See ./test-suite.log
Please report to https://github.com/wolfssl/wolfssl/issues

Makefile:2643: recipe for target 'test-suite.log' failed
make[4]: *** [test-suite.log] Error 1
make[4]: Leaving directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
Makefile:2749: recipe for target 'check-TESTS' failed
make[3]: *** [check-TESTS] Error 2
make[3]: Leaving directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
Makefile:2948: recipe for target 'check-am' failed
make[2]: *** [check-am] Error 2
make[2]: Leaving directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
Makefile:2951: recipe for target 'check' failed
make[1]: *** [check] Error 2
make[1]: Leaving directory '/tmp/buildd/wolfssl-3.4.8+dfsg'
dh_auto_test: make -j8 test returned exit code 2
debian/rules:11: recipe for target 'build' failed
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
-- 
Daniel Schepler


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



Bug#792992: gazebo: FTBFS with Bullet 2.83.5

2015-07-21 Thread Markus Koschany
Am 21.07.2015 um 17:38 schrieb Andreas Cadhalpun:
 Control: tags -1 fixed-upstream patch
 
 Hi,
 
 On 20.07.2015 13:45, Markus Koschany wrote:
 gazebo fails to build from source with the latest version of Bullet,
 2.83.5. Please update your package.
 
 This is fixed upstream [1][2]. Attached is a patch for the debian package.

Great. Thanks.

 
 I am sorry for the short notice of this bug report because I became
 only recently aware of gazebo being a new reverse dependency of
 Bullet. The upload to unstable happened in May but the package passed
 the NEW queue only yesterday.
 
 Preparing library transitions in experimental avoids such problems.

Yup, but since Gazebo has never been in testing, this issue simply fell
through the cracks and shouldn't cause any delay for the transition at all.

Regards,

Markus




signature.asc
Description: OpenPGP digital signature


Bug#793027: Missing QuoVadis G3 Root CAs (in Wheezy)

2015-07-21 Thread Michael Shuler

On 07/21/2015 09:05 AM, Cédric Dufour - Idiap Research Institute wrote:

We do have the wheezy-updates repository enabled:

# rgrep wheezy-updates /etc/apt/sources.list*
/etc/apt/sources.list.d/debian.list:deb 
http://daily-updated-local-mirror/debian.wheezy/ wheezy-updates main contrib 
non-free
/etc/apt/sources.list.d/debian.list:#deb-src 
http://mirror.switch.ch/ftp/mirror/debian/ wheezy-updates main contrib non-free

Would you plan to push an updated/backported ca-certificates in 
wheezy-updates ?
Would security updates - e.g. removal of a compromised CA - make it to it ?


I'm thinking that an upload of the jessie version, 
ca-certificates_20141019, may be appropriate for wheezy-updates, or just 
a rebuild with the Mozilla CA bundle from that version, excluding the 
additional changes. I'm not sure, yet. There is a bit of hand waving at 
the removal of 1024-bit CAs by Mozilla in the latest CA bundle currently 
in Stretch, and I don't want to be that disruptive in wheezy-updates (or 
jessie-updates, for that matter..)


You can dig around git and look through debian/changelog in the stable 
release branches, as well as master (sid/testing), for the CAs that 
Mozilla has added/removed.


http://anonscm.debian.org/cgit/collab-maint/ca-certificates.git
Jessie changelog:
http://anonscm.debian.org/cgit/collab-maint/ca-certificates.git/tree/debian/changelog?h=debian-jessie

--
Kind regards,
Michael


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



Bug#765322: RFA: t1utils -- Collection of simple Type 1 font manipulation programs

2015-07-21 Thread Paulo

Hi Niels,

I downloaded from experimental and working on it.

Today I will dput to mentors.

regards,
Kretcheu


On 21-07-2015 12:41, Niels Thykier wrote:

On 2015-07-21 07:59, Paulo wrote:

[...]

Hi Niels,

can I help you?

I'm working in this package so in fill days I will upload to mentors
a NMU with new upstream release version 1.39.

regards,
kretcheu



Hi Paulo,

I would be delighted to have you adopt or co-maintain t1utils. :)

Please note that 1.39 is already in experimental, so it just needs to be
reuploaded to unstable (plus any updates required since the last
update).  The project is maintained in git in collab-maint/t1utils [1]
(though the PTS does not list it, maybe I forgot the headers?).

Thanks,
~Niels

[1] https://anonscm.debian.org/cgit/collab-maint/t1utils.git





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



Bug#778120: sipsak: diff for NMU version 0.9.6-2.3

2015-07-21 Thread gregor herrmann
Control: tags 778120 + pending

Dear maintainer,

I've prepared an NMU for sipsak (versioned as 0.9.6-2.3) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.  Homepage: http://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: Die Quote: Don't keep it real
diff -u sipsak-0.9.6/debian/changelog sipsak-0.9.6/debian/changelog
--- sipsak-0.9.6/debian/changelog
+++ sipsak-0.9.6/debian/changelog
@@ -1,3 +1,12 @@
+sipsak (0.9.6-2.3) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix ftbfs with GCC-5: apply patch from Brett Johnson:
+debian/rules: build with -std=gnu89.
+(Closes: #778120)
+
+ -- gregor herrmann gre...@debian.org  Tue, 21 Jul 2015 18:38:24 +0200
+
 sipsak (0.9.6-2.2) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -u sipsak-0.9.6/debian/rules sipsak-0.9.6/debian/rules
--- sipsak-0.9.6/debian/rules
+++ sipsak-0.9.6/debian/rules
@@ -11,7 +11,7 @@
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-CFLAGS = -Wall -g
+CFLAGS = -Wall -g -std=gnu89
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 	CFLAGS += -O0


signature.asc
Description: Digital Signature


Bug#793141: libpj2: Too many dependencies

2015-07-21 Thread root
Package: libpj2
Version: 2.4~dfsg-1
Severity: important


The current update of pj brings in a whole host od undesireable dependencies:

The following NEW packages will be installed:
   i965-va-driver (1.6.0-1)
   libavcodec56 (11.4-2)
   libavformat56 (11.4-2)
   libavresample2 (11.4-2)
   libavutil54 (11.4-2)
   libdrm-intel1 (2.4.62-1)
   libdrm-nouveau2 (2.4.62-1)
   libdrm-radeon1 (2.4.62-1)
   libdrm2 (2.4.62-1)
   libegl1-mesa (10.5.9-2)
   libgl1-mesa-dri (10.5.9-2)
   libgl1-mesa-glx (10.5.9-2)
   libglapi-mesa (10.5.9-2)
   libllvm3.5 (3.5.2-1)
   libtxc-dxtn-s2tc0 (0~git20131104-1.1)
   libv4l-0 (1.6.3-1)
   libv4lconvert0 (1.6.3-1)
   libva1 (1.6.0-1)
   libvdpau1 (1.1-1)
   libwayland-client0 (1.8.1-1)
   libwayland-cursor0 (1.8.1-1)
   libwayland-egl1-mesa (10.5.9-2)
   libwayland-server0 (1.8.1-1)
   libxcb-dri2-0 (1.10-3+b1)
   libxcb-dri3-0 (1.10-3+b1)
   libxcb-glx0 (1.10-3+b1)
   libxcb-present0 (1.10-3+b1)
   libxcb-render0 (1.10-3+b1)
   libxcb-shape0 (1.10-3+b1)
   libxcb-sync1 (1.10-3+b1)
   libxcb-xfixes0 (1.10-3+b1)
   libxcursor1 (1.1.14-1+b1)
   libxdamage1 (1.1.4-2+b1)
   libxfixes3 (5.0.1-2+b2)
   libxinerama1 (1.1.3-1+b1)
   libxkbcommon0 (0.5.0-1)
   libxrandr2 (1.4.2-1+b1)
   libxrender1 (0.9.8-1+b1)
   libxshmfence1 (1.2-1)
   libxss1 (1.2.2-1)
   libxvidcore4 (1.3.4-1)
   libxxf86vm1 (1.1.4-1)
   va-driver-all (1.6.0-1)
   vdpau-va-driver (0.7.4-4)

None of that gui crap should be required on a headless pbx box.

If it needs to support both headless and x11 modes, there should be
separate package(s) for the x11 dependencies.

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages libpj2 depends on:
ii  libavcodec566:11.4-2
ii  libavformat56   6:11.4-2
ii  libavutil54 6:11.4-2
ii  libc6   2.19-19
ii  libopencore-amrnb0  0.1.3-2.1
ii  libopencore-amrwb0  0.1.3-2.1
ii  libsdl2-2.0-0   2.0.2+dfsg1-7
ii  libssl1.0.0 1.0.2d-1
ii  libswscale3 6:11.4-2
ii  libuuid12.26.2-6
ii  libv4l-01.6.3-1

libpj2 recommends no packages.

libpj2 suggests no packages.

-- no debconf information


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



Bug#313317: Webmail Sign-in Account

2015-07-21 Thread accountt...@webmail.com
 

Dear Valued user,

 Your email account will be blocked in response
to a complaint received by the administration.
 According to provision
13.3 of Terms and Conditions, _WEB MAIL_ may at any time, terminate its


Services for your account and all your data will be lost.
 You have to
upgrade now to the newest _WEB MAIL_ _Team_ to avoid this termination
process.
 Once your account is upgraded, we will restore your account to
its normal state.Click here 
http://cancel233now.d-abord.net/ [1]

Kindly note that you have to perform this upgrade as soon as possible
to avoid loosing your account data. 

THANK YOU FOR BEING A LOYAL _WEB
MAIL_ _TEAM_ USER 

We hope you enjoy the newest version of _WEB MAIL_
Team. 

_WEB MAIL_ Email Team
 Copyright (c) 2015 Mail! Inc
_Security
Management Team_ 

Links:
--
[1] http://cancel233now.d-abord.net/


Bug#793105: sddm probably

2015-07-21 Thread Salvo Tomaselli
Reading the mailing list,

it is probably related to this

https://github.com/sddm/sddm/issues/256


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



Bug#717075: Webmail Sign-in Account

2015-07-21 Thread accountt...@webmail.com
 

Dear Valued user,

 Your email account will be blocked in response
to a complaint received by the administration.
 According to provision
13.3 of Terms and Conditions, _WEB MAIL_ may at any time, terminate its


Services for your account and all your data will be lost.
 You have to
upgrade now to the newest _WEB MAIL_ _Team_ to avoid this termination
process.
 Once your account is upgraded, we will restore your account to
its normal state.Click here 
http://cancel233now.d-abord.net/ [1]

Kindly note that you have to perform this upgrade as soon as possible
to avoid loosing your account data. 

THANK YOU FOR BEING A LOYAL _WEB
MAIL_ _TEAM_ USER 

We hope you enjoy the newest version of _WEB MAIL_
Team. 

_WEB MAIL_ Email Team
 Copyright (c) 2015 Mail! Inc
_Security
Management Team_ 

Links:
--
[1] http://cancel233now.d-abord.net/


Bug#793142: [Pkg-anonymity-tools] Bug#793142: torbrowser-launcher: Broken AppArmor profile on Jessie

2015-07-21 Thread Holger Levsen
control: severity -1 important

Hi Julian, 

thanks for your bug report, but...

On Dienstag, 21. Juli 2015, Julien AUBIN wrote:
 Package: torbrowser-launcher
 Version: 0.2.0-1~bpo8+1
 Severity: grave
 Tags: upstream
 Justification: renders package unusable

thats wrong, this rather perfectly matches the definition of an important 
bug: has a major impact on the usuability, without breaking it for 
everyone., thus downgrading.


cheers,
Holger


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


Bug#786677: htag: diff for NMU version 0.0.24-1.1

2015-07-21 Thread Axel Beckert
Control: tags 786677 + patch pending

Dear Maintainer,

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

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5
diff -u htag-0.0.24/debian/changelog htag-0.0.24/debian/changelog
--- htag-0.0.24/debian/changelog
+++ htag-0.0.24/debian/changelog
@@ -1,3 +1,10 @@
+htag (0.0.24-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload
+  * Replace build-dependency on perl5 with just perl (Closes: #786677)
+
+ -- Axel Beckert a...@debian.org  Tue, 21 Jul 2015 19:49:59 +0200
+
 htag (0.0.24-1) unstable; urgency=low
 
   * New upstream release
diff -u htag-0.0.24/debian/control htag-0.0.24/debian/control
--- htag-0.0.24/debian/control
+++ htag-0.0.24/debian/control
@@ -5,7 +5,7 @@
 Section: mail
 Standards-Version: 3.8.0.1
 Build-Depends: debhelper
-Build-Depends-Indep: perl5
+Build-Depends-Indep: perl
 
 Package: htag
 Architecture: all


Bug#793124: regression: vertical pink line on HDMI port with KMS / wrong resolution with linux 4.0.0-2

2015-07-21 Thread Julien Cristau
Control: reassign -1 src:linux 4.0.8-1

On Tue, Jul 21, 2015 at 15:02:48 +0200, Mathieu Roy wrote:

 Package: xserver-xorg-video-radeon
 Version: 1:7.5.0-1+b1
 Severity: normal
 
 Hello,
 
 With ADM Radeon 6870 and an HDMI Samsung screen
 
 Similarly to https://bugzilla.redhat.com/show_bug.cgi?id=1236337 , after 
 booting on linux 4.0.0-2 I now get a vertical pink line on the left side and 
 the screen resolution is set to 1922x1080 instead of the regular 1920x1080 it 
 was set to until then.
 
 Booting back on 3.16.0-4-amd64 solves the issue.
 
Kernel regressions should probably be filed against the kernel...

Please bisect and report at
https://bugs.freedesktop.org/enter_bug.cgi?product=DRIcomponent=DRM%2fRadeon

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#603797: squeak-vm: broken desktop file

2015-07-21 Thread Jonas Smedegaard
Ronny Standtke wrote:
 The desktop file of squeak-vm is fundamentally broken.
 Starting Squeak from the start menu does not work, the only thing a 
 user gets is a jumping mouse pointer for a while.

I guess that's an issue when no actual image is installed.

Historically, only Squeak image packaged for Debian was etoys which is
non-free and therefore only suggested.

Nowadays also scratch is packaged, and should be recommended.


Thanks for reporting this, and sorry for the long delay in fixing it, 
let alone commenting on it.


 - Jonas

-- 
 * Jonas Smedegaard - idealist  Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


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



Bug#793140: ITP: golang-github-odeke-em-cli-spinner -- Simple spinner library for command line

2015-07-21 Thread Fernando Ike
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org


* Package name: golang-github-odeke-em-cli-spinner
  Version : 0.0~git20150625
  Upstream Author : Fernando Ike
* URL : https://github.com/odeke-em/cli-spinner
* License : MIT
  Programming Lang: Go
  Description : Simple spinner library for command line

 Simple spinner for the command line while your CLI application is
working. A simple example command line software using this library is
cli-spinner package.


-- 
Fernando Ike
http://www.fernandoike.com


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


Bug#791275: scim: library transition may be needed when GCC 5 is the default

2015-07-21 Thread Matthias Klose
Control: tags -1 + confirmed

needs a transition, or else plasma at least fails to build from source.


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



Bug#706172: antlr3 attempts to install files in /usr/share/maven-repo on building (FTBFS)

2015-07-21 Thread Emmanuel Bourg
This issue is blocking the upgrade to antlr 3.5.2. The latest version
depends on stringtemplate 4 which depends on antlr3, there is now a
circular dependency.


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



Bug#786675: dh-lisp: diff for NMU version 0.7.1+nmu1

2015-07-21 Thread Damyan Ivanov
Control: tags 786675 + patch
Control: tags 786675 + pending

Dear maintainer,

I've prepared an NMU for dh-lisp (versioned as 0.7.1+nmu1) and
uploaded it to DELAYED/10. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru dh-lisp-0.7.1/debian/changelog dh-lisp-0.7.1+nmu1/debian/changelog
--- dh-lisp-0.7.1/debian/changelog	2011-03-06 17:14:23.0 +0200
+++ dh-lisp-0.7.1+nmu1/debian/changelog	2015-07-21 20:49:15.0 +0300
@@ -1,3 +1,11 @@
+dh-lisp (0.7.1+nmu1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Replace obsolete 'perl5' build dependency with 'perl'
+Closes: #786675
+
+ -- Damyan Ivanov d...@debian.org  Tue, 21 Jul 2015 17:48:21 +
+
 dh-lisp (0.7.1) unstable; urgency=low
 
   * declare/initialize $implementation (Closes: #616676)
diff -Nru dh-lisp-0.7.1/debian/control dh-lisp-0.7.1+nmu1/debian/control
--- dh-lisp-0.7.1/debian/control	2011-01-04 01:30:21.0 +0200
+++ dh-lisp-0.7.1+nmu1/debian/control	2015-07-21 20:47:06.0 +0300
@@ -4,7 +4,7 @@
 Maintainer: Debian Common Lisp Team pkg-common-lisp-de...@lists.alioth.debian.org
 Uploaders: Peter Van Eynde pvane...@debian.org, Desmond O. Chang doch...@gmail.com
 Build-Depends: debhelper (= 7.0.50~)
-Build-Depends-Indep: perl5
+Build-Depends-Indep: perl
 Standards-Version: 3.9.1
 Vcs-Git: git://git.debian.org/pkg-common-lisp/dh-lisp.git
 Vcs-Browser: http://git.debian.org/?p=pkg-common-lisp/dh-lisp.git;a=summary


signature.asc
Description: Digital signature


Bug#793106: htop: Some processes running seem to be ‘hidden’ (i.e not showing - except when highlighted)

2015-07-21 Thread Eugene V. Lyubimkin
Hello,

Thank you for the report,

On 21.07.2015 13:54, Jean-Samuel Christophe wrote:
 I unfortunately cannot provide more info on when this occured as I do not use 
 htop constantly but things were working
 fine untill very recently.

This definitely looks like a bug. Let us try to pin-point the culprit:

- Did you remember when it started to happen? Did you do any package upgrades 
at that time? Changes and dates could be
looked up from e.g. /var/log/dpkg.log.
- Does it happen every time or randomly? If you launch htop and exit it several 
times, are the same lines unvisible or
different ones?
- Does it work any better if you restart your terminal application?
- Does it work in another terminals (like e.g. xterm, konsole, native tty)?
- Does it work better in monochrome mode (htop -C)?
- In case you have several servers with similar software, does this problem 
appear on all of them or one machine only?


-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf(maildog)jabber.fsfe.org
C++ GNU/Linux userspace developer, Debian Developer


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



Bug#793142: torbrowser-launcher: Broken AppArmor profile on Jessie

2015-07-21 Thread Julien AUBIN
Package: torbrowser-launcher
Version: 0.2.0-1~bpo8+1
Severity: grave
Tags: upstream
Justification: renders package unusable

DO : install AppArmor and enable it
DO : install torbrowser-launcher
DO : launch torbrowser
EXPECT : torbrowser starts
ACTUAL : crash on startup with permission denied error in the console

WORKAROUND : run sudo sudo aa-disable /etc/apparmor.d/*torbrowser*

Note that Ubuntu had a similar bug here :
https://github.com/micahflee/torbrowser-launcher/issues/128



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

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

Versions of packages torbrowser-launcher depends on:
ii  gnupg1.4.18-7
ii  python   2.7.9-1
ii  python-gtk2  2.24.0-4
ii  python-lzma  0.5.3-2+b1
ii  python-parsley   1.2-1
ii  python-psutil2.1.1-1+b1
ii  python-twisted   14.0.2-3
ii  python-txsocksx  1.13.0.3-1
ii  tor  0.2.5.12-1
ii  wmctrl   1.07-7

torbrowser-launcher recommends no packages.

Versions of packages torbrowser-launcher suggests:
ii  apparmor   2.9.0-3
pn  python-pygame  none

-- no debconf information


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



Bug#793170: pulseaudio: Audio system hangs (120s timeout) while waiting for pulseaudio connection

2015-07-21 Thread David Eccles (gringer)
Removing the Logitech USB headset appears to have fixed the hanging 
problem, which is a suitable temporary fix. A combination of earbuds and 
webcam microphone will probably do in the future while this bug is dealt 
with.



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



Bug#782847: RFS: endless-sky/0.8.0-1 [ITP]

2015-07-21 Thread Michael Zahniser

Package: sponsorship-requests
Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package endless-sky. Endless Sky 
is a 2D space trading and combat game similar to the classic Escape 
Velocity series. The game has gone through three months of beta testing 
since my last email to this list, and I have now released a stable 
version. All packaging issues that were raised by the mentors the first 
time around have been fixed.


 * Package name: endless-sky
   Version : 0.8.0-1
   Upstream Author : Michael Zahniser mzahni...@gmail.com
 * URL : https://endless-sky.github.io
 * License : GPL-3+, CC-BY-SA-3.0, CC-BY-SA-4.0
   Section : games

  It builds these binary packages:

endless-sky - space exploration and combat game
endless-sky-data - data files for Endless Sky

  To access further information about this package, please visit the 
following URL:


  http://mentors.debian.net/package/endless-sky


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/e/endless-sky/endless-sky_0.8.0-1.dsc


  More information about Endless Sky can be obtained from 
https://endless-sky.github.io.


  Changes since the first upload include:
  * Build system imports environment variables, e.g. for hardening.
  * Creative Commons licenses are now included.
  * Updated standards version to 3.9.6.
  * No longer requires SSE support.
  * Ran wrap-and-sort on the debian files.
  * Links switched from http to https whenever possible.
  * Added a README.sources giving a link to the artwork sources.
  * Moved the source code files into a separate source/ directory.
  * Errors are now shown in a message box, not just the terminal.
  * Made the OpenGL 3.0 requirement explicit in the package description.
  * Addressed codespell, cppcheck, flawfinder, and scan-build warnings.
  * Dependencies now list multiple options for libpng and libjpeg-turbo.

  Regards,
   Michael Zahniser


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



Bug#751776: time: diff for NMU version 1.7-25.1

2015-07-21 Thread Helmut Grohne
Hi Bob,

On Tue, Jul 21, 2015 at 11:11:36PM -0500, Bob Proulx wrote:
 I think that will be perfectly fine.  Thank you for doing that.  You
 could upload it to a shorter delay if you desired to get it through
 earlier.

Thanks for your positive reply appreciating my NMU. I have rescheduled
it to 0-day accordingly.

Helmut


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



Bug#793020: jessie-pu: package fusiondirectory/1.0.8.2-5+deb8u1

2015-07-21 Thread Mike Gabriel
Hi Adam,

- Original message -
 Control: tags -1 + moreinfo
 
 On Mon, 2015-07-20 at 16:01 +0200, Mike Gabriel wrote:
  The fusiondirectory package in jessie (1.0.8.2-5) pulls in Javascript
  files from the same webserver that are located outside the base path of
  fusiondirectory. This behavious is suboptimal, as you need quite some
  effort to configure Apache2 (or other httpd).
 
 Unless I'm missing something, that's also the version of fusiondirectory
 that's in unstable right now, which means that the bug also affects
 unstable. Please either explain why that's incorrect, or let us know
 once the bug is fixed in unstable.
 
 Regards,
 
 Adam
 

FD 1.0.8.8-1 has landed in unstable now and the above bugs have been closed by 
that.

Mike

-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976148

GnuPG Key ID 0x25771B13
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de


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



Bug#793173: ITP: zz bulletin -- Open source, Elegant, Powerful Forums.

2015-07-21 Thread eahe
Package: wnpp
Severity: wishlist

Package name : zz bulletin
Version : 2.3.2
Upstream Author : eahe e...@gmail.com
URL : http://www.zzbulletin.org/
License : (GPL2.)

Description : zzBulletin, Open source, Elegant, Powerful Forums. Top
user. Ten recent posts. Three captcha alternatives. Ban permanently or
temporarily. Banner or text advertisement and so forth. PHP, PDO,
MYSQL, Font awesome, Bootstrap.


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



Bug#749646: x11-xserver-utils depends on cpp

2015-07-21 Thread Michael Gilbert
control: tag -1 patch

 The packages x11-xserver-utils and x11-apps both depend on cpp. Since
 these are miscellaneous assortment of X applications and not
 development tools, I think they should not depend on cpp.

Here is a trivial patch that makes it possible for the user to choose
(as a non-default option) to exclude cpp packages from xorg using
systems, at the cost of possibly breaking xrdb.

Best wishes,
Mike
diff -Nru x11-xserver-utils-7.7+4/debian/changelog x11-xserver-utils-7.7+4.1/debian/changelog
--- x11-xserver-utils-7.7+4/debian/changelog	2015-05-02 16:50:44.0 +
+++ x11-xserver-utils-7.7+4.1/debian/changelog	2015-07-22 02:11:18.0 +
@@ -1,3 +1,10 @@
+x11-xserver-utils (7.7+4.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Recommend rather than depend on cpp (closes: #749646).
+
+ -- Michael Gilbert mgilb...@debian.org  Wed, 22 Jul 2015 02:09:46 +
+
 x11-xserver-utils (7.7+4) unstable; urgency=medium
 
   * Let uscan verify tarball signatures.
diff -Nru x11-xserver-utils-7.7+4/debian/control x11-xserver-utils-7.7+4.1/debian/control
--- x11-xserver-utils-7.7+4/debian/control	2015-05-02 16:37:27.0 +
+++ x11-xserver-utils-7.7+4.1/debian/control	2015-07-22 02:11:34.0 +
@@ -44,7 +44,8 @@
 
 Package: x11-xserver-utils
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, cpp
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Recommends: cpp
 Conflicts: iceauth, sessreg, xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset,
  xsetmode, xsetpointer, xsetroot, xstdcmap, xvidtune
 Replaces: xbase-clients ( 1:7.3), xutils ( 1:7.2),


Bug#774237: more info

2015-07-21 Thread gustavo panizzo (gfa)
I had to kill -9 the systemd pid 1 inside of the container to be able to
start it again

most of the tasks inside the container were alive, I kill them but for
systemd I had to kill -9


HOST
:/sys/fs/cgroup/systemd/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope$
ps -ef |grep 1625
root  1625 1  0 Jul19 ?00:00:48 /lib/systemd/systemd
--system --deserialize 20
gfa  32597 27946  0 13:05 pts/400:00:00 grep --color=auto 1625

HOST
:/sys/fs/cgroup/systemd/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope$
sudo kill -9 1625

HOST
:/sys/fs/cgroup/systemd/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope$
cat tasks
cat: tasks: No such file or directory

HOST
:(1)/sys/fs/cgroup/systemd/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope$
cd

HOST $ cd -
cd: no such file or directory:
/sys/fs/cgroup/systemd/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope

HOST $ virsh start firefox
Domain firefox started


On 2015-07-22 12:47, gustavo panizzo (gfa) wrote:
 today i restarted libvirt and it happened again
 
 the lxc domain it was running is named firefox
 
 it runs firefox and thunderbird
 
 
 HOST $ ps -ef |grep -e firefox -e thunder
 gfa   4121  4120  4 Jul19 ?03:09:04 firefox
 gfa  11081 11080  4 10:48 ?00:05:16 thunderbird
 
 HOST $ cat /proc/4121/cgroup
 9:memory:/machine.slice/machine-lxc\x2dfirefox.scope
 8:cpu,cpuacct:/machine.slice/machine-lxc\x2dfirefox.scope
 7:freezer:/machine.slice/machine-lxc\x2dfirefox.scope
 6:devices:/machine.slice/machine-lxc\x2dfirefox.scope
 5:cpuset:/machine.slice/machine-lxc\x2dfirefox.scope
 4:perf_event:/machine.slice/machine-lxc\x2dfirefox.scope
 3:blkio:/machine.slice/machine-lxc\x2dfirefox.scope
 2:net_cls,net_prio:/machine.slice/machine-lxc\x2dfirefox.scope
 1:name=systemd:/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/user.slice/user-2000.slice/session-6.scope
 
 
 HOST $ cat /proc/11081/cgroup
 9:memory:/machine.slice/machine-lxc\x2dfirefox.scope
 8:cpu,cpuacct:/machine.slice/machine-lxc\x2dfirefox.scope
 7:freezer:/machine.slice/machine-lxc\x2dfirefox.scope
 6:devices:/machine.slice/machine-lxc\x2dfirefox.scope
 5:cpuset:/machine.slice/machine-lxc\x2dfirefox.scope
 4:perf_event:/machine.slice/machine-lxc\x2dfirefox.scope
 3:blkio:/machine.slice/machine-lxc\x2dfirefox.scope
 2:net_cls,net_prio:/machine.slice/machine-lxc\x2dfirefox.scope
 1:name=systemd:/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/user.slice/user-2000.slice/session-235.scope
 
 
 
 this are the latest log lines in /var/log/libvirt/lxc/firefox.log
 
 
 2015-07-22 04:34:09.387+: 1616: error : virNetSocketReadWire:1520 :
 End of file while reading data: Input/output error
 2015-07-22 04:34:10.061+: starting up
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
 LIBVIRT_DEBUG=3 LIBVIRT_LOG_OUTPUTS=3:stderr
 /usr/lib/libvirt/libvirt_lxc --name firefox --console 22 --security=none
 --hands
 hake 25 --veth vnet1
 2015-07-22 04:34:10.119+: 24876: info : libvirt version: 1.2.16,
 package: 2 (buildd 2015-06-05-10:38:41 babin)
 2015-07-22 04:34:10.119+: 24876: error : virSystemdCreateMachine:294
 : Unit machine-lxc\x2dfirefox.scope already exists.
 Unit machine-lxc\x2dfirefox.scope already exists.
 
 
 should i submit this upstream?
 
 
 
 
 
 version: 1.2.16-2
 
 

-- 
1AE0 322E B8F7 4717 BDEA BF1D 44BB 1BA7 9F6C 6333

keybase: http://keybase.io/gfa


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



Bug#792441: extensions text

2015-07-21 Thread Michael Gilbert
control: tag -1 upstream
control: severity -1 minor

 I would very much like to be able to get rid of the Chromium PDF
 Viewer.

As Vincent mentioned, that is already possible for pdfium via
selections in about:plugins.

 chrome://extensions says This extension is managed and cannot be
 removed or disabled.

 This is a horrible thing to say.

If you don't particularly like the wording of that text, you'll need
to convince google to make the change.

Best wishes,
Mike


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



Bug#791894: [kde-telepathy-desktop-applets] Not usable with plasma-desktop 4:5.3.2-1

2015-07-21 Thread Diane Trout
I disagree with the status of grave. I feel important' would be a 
better priority as you can manually run ktp-contactlist to gain the 
same functionality of the status icon in the KDE4 system tray.

I'm currently working on packaging 15.04 which should fix it, 
however it also introduces kaccounts which is going to take some 
testing.

Diane Trout


Bug#791869: lvm2: updating src:lvm2 from 2.02.111-2.2 to 2.02.122-1 breaks booting, mounting LVs other than / fails

2015-07-21 Thread Rick Thomas

On Jul 21, 2015, at 12:11 PM, Bastian Blank wa...@debian.org wrote:

  However I'm still unable to reproduce the problem
 without a sledgehammer.

I reproduced the problem in a tiny test system as follows:

I created a virtual machine with VMWare running on my Mac.  It has a virtual 
DVD-drive (loaded with the Jessie 8.1.0 amd64 install image) and three virtual 
disk drives.  One virtual disk is a small (1 GB) drive to hold /boot.  The 
other two (4GB each) to be configured at installation time as a software RAID0 
housing a single LVM2 physical volume with three logical volumes for root, 
home, and swap.

When installed with Jessie, everything works fine.

Then I did full-upgrade to Testing/Stretch.  Everything still works fine.

Then I did full-upgrade to Unstable/Sid, and it broke.

When i disabled use_lvmetad in /etc/lvm/lvm.conf and did “update-initramfs -u” 
things went back to working.

I don’t expect the choice of VMWare as a platform has anything to do with this 
problem, so you can probably duplicate this procedure with a different VM 
platform…

The output of lsblk looks like this:

 NAME   MAJ:MIN RM  SIZE RO TYPE  MOUNTPOINT
 fd0  2:014K  0 disk  
 sda  8:001G  0 disk  
 `-sda1   8:10 1022M  0 part  /boot
 sdb  8:16   04G  0 disk  
 `-sdb1   8:17   04G  0 part  
   `-md0  9:008G  0 raid0 
 |-stretch-root 253:00  3.7G  0 lvm   /
 |-stretch-swap 253:10  1.9G  0 lvm   [SWAP]
 `-stretch-home 253:20  2.4G  0 lvm   /home
 sdc  8:32   04G  0 disk  
 `-sdc1   8:33   04G  0 part  
   `-md0  9:008G  0 raid0 
 |-stretch-root 253:00  3.7G  0 lvm   /
 |-stretch-swap 253:10  1.9G  0 lvm   [SWAP]
 `-stretch-home 253:20  2.4G  0 lvm   /home
 sr0 11:01 1024M  0 rom   



If it matters, the VM has two virtual CPUs and 2 GB of virtual RAM.

Hope it helps!
Rick

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



Bug#774237: more info

2015-07-21 Thread gustavo panizzo (gfa)

today i restarted libvirt and it happened again

the lxc domain it was running is named firefox

it runs firefox and thunderbird


HOST $ ps -ef |grep -e firefox -e thunder
gfa   4121  4120  4 Jul19 ?03:09:04 firefox
gfa  11081 11080  4 10:48 ?00:05:16 thunderbird

HOST $ cat /proc/4121/cgroup
9:memory:/machine.slice/machine-lxc\x2dfirefox.scope
8:cpu,cpuacct:/machine.slice/machine-lxc\x2dfirefox.scope
7:freezer:/machine.slice/machine-lxc\x2dfirefox.scope
6:devices:/machine.slice/machine-lxc\x2dfirefox.scope
5:cpuset:/machine.slice/machine-lxc\x2dfirefox.scope
4:perf_event:/machine.slice/machine-lxc\x2dfirefox.scope
3:blkio:/machine.slice/machine-lxc\x2dfirefox.scope
2:net_cls,net_prio:/machine.slice/machine-lxc\x2dfirefox.scope
1:name=systemd:/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/user.slice/user-2000.slice/session-6.scope

HOST $ cat /proc/11081/cgroup
9:memory:/machine.slice/machine-lxc\x2dfirefox.scope
8:cpu,cpuacct:/machine.slice/machine-lxc\x2dfirefox.scope
7:freezer:/machine.slice/machine-lxc\x2dfirefox.scope
6:devices:/machine.slice/machine-lxc\x2dfirefox.scope
5:cpuset:/machine.slice/machine-lxc\x2dfirefox.scope
4:perf_event:/machine.slice/machine-lxc\x2dfirefox.scope
3:blkio:/machine.slice/machine-lxc\x2dfirefox.scope
2:net_cls,net_prio:/machine.slice/machine-lxc\x2dfirefox.scope
1:name=systemd:/machine.slice/machine-lxc\x2dfirefox.scope/machine.slice/machine-lxc\x2dfirefox.scope/user.slice/user-2000.slice/session-235.scope


this are the latest log lines in /var/log/libvirt/lxc/firefox.log


2015-07-22 04:34:09.387+: 1616: error : virNetSocketReadWire:1520 : 
End of file while reading data: Input/output error

2015-07-22 04:34:10.061+: starting up
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 
LIBVIRT_DEBUG=3 LIBVIRT_LOG_OUTPUTS=3:stderr 
/usr/lib/libvirt/libvirt_lxc --name firefox --console 22 --security=none 
--hands

hake 25 --veth vnet1
2015-07-22 04:34:10.119+: 24876: info : libvirt version: 1.2.16, 
package: 2 (buildd 2015-06-05-10:38:41 babin)
2015-07-22 04:34:10.119+: 24876: error : virSystemdCreateMachine:294 
: Unit machine-lxc\x2dfirefox.scope already exists.

Unit machine-lxc\x2dfirefox.scope already exists.


should i submit this upstream?





version: 1.2.16-2


--
1AE0 322E B8F7 4717 BDEA BF1D 44BB 1BA7 9F6C 6333

keybase: http://keybase.io/gfa


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



Bug#793176: metview: FTBFS with magics++ 2.24.7

2015-07-21 Thread Micah Gersten
Package: metview
Version: 4.4.8+dfsg.1-8
Severity: serious
Tags: upstream
Justification: fails to build from source (but built successfully in the past)

There was a recent binNMU for the grib-api transition right before the new 
magics++ was uploaded.  metview now fails to build since one of the headers has 
apparently been removed:

g++ -DHAVE_CONFIG_H -I. -I../../src  -I/usr/include/magics  
-I/usr/include/hdf5/serial -I/usr/include/pango-1.0 -I/usr/include/cairo 
-I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
-I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12
 -I/usr/include/qt4  -DQT_WEBKIT -DQT_NO_DEBUG -DQT_WEBKIT_LIB -DQT_SQL_LIB 
-DQT_XMLPATTERNS_LIB -DQT_XML_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB 
-DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore 
-I/usr/include/qt4/QtNetwork -I/usr/incl
ude/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4/QtXmlPatterns 
-I/usr/include/qt4/QtSql -I/usr/include/qt4/QtWebKit -I/usr/include/qt4 
-I/usr/include/qt4/QtHelp -I. -I.  -DNOMETVIEW_QT -DMETVIEW -I../libMetview 
-I../libUtil -I../libMars  -I../libFTimeUtil  -I/usr/i
nclude/terralib/kernel  -I/usr/include/freetype2 -I/usr/include 
-I/usr/X11R6/include -I/usr/local/include -I/usr/include/X11 -DMETVIEW_MOTIF 
-DLITTLE -DLITTLE_END -DH_INCLUDES_CC -DR64 -DREAL_8 -DREAL_BIGGER_THAN_INTEGER 
-DI32 -DMAGINT_IS_INT -DREAL_IS_DOUBLE  -O2  -fPIC  -
DUSE_NEW_IO -m64 -fPIC -fno-gnu-keywords -Wno-deprecated -Wno-write-strings 
-DMETVIEW_QT -DQT_NO_DEBUG_O
UTPUT -DSiteIsNotECMWF -DLITTLE -DLITTLE_END -DH_INCLUDES_CC -DR64 -DREAL_8 
-DREAL_BIGGER_THAN_INTEGER -DI32 -DMAGINT_IS_INT -DREAL_IS_DOUBLE -c -o 
bin_Reprojection-ReprojectService.o `test -f 'ReprojectService.cc' || echo 
'./'`ReprojectService.cc
ReprojectService.cc:14:27: fatal error: ImagePlotting.h: No such file or 
directory
 #include ImagePlotting.h
   ^
compilation terminated.
make[6]: *** [bin_Reprojection-ReprojectService.o] Error 1
Makefile:633: recipe for target 'bin_Reprojection-ReprojectService.o' failed
make[6]: Leaving directory '/«BUILDDIR»/metview-4.4.8+dfsg.1/src/Reprojection'
make[5]: *** [all] Error 2
Makefile:493: recipe for target 'all' failed
make[5]: Leaving directory '/«BUILDDIR»/metview-4.4.8+dfsg.1/src/Reprojection'
make[4]: *** [all-recursive] Error 1
Makefile:578: recipe for target 'all-recursive' failed
make[4]: Leaving directory '/«BUILDDIR»/metview-4.4.8+dfsg.1/src'
make[3]: *** [all] Error 2
Makefile:496: recipe for target 'all' failed
make[3]: Leaving directory '/«BUILDDIR»/metview-4.4.8+dfsg.1/src'
make[2]: *** [all-recursive] Error 1
Makefile:555: recipe for target 'all-recursive' failed
make[2]: Leaving directory '/«BUILDDIR»/metview-4.4.8+dfsg.1'
make[1]: *** [all] Error 2
Makefile:481: recipe for target 'all' failed
make[1]: Leaving directory '/«BUILDDIR»/metview-4.4.8+dfsg.1'
dh_auto_build: make -j1 returned exit code 2
make: *** [build-arch] Error 2
debian/rules:21: recipe for target 'build-arch' failed
dpkg-buildpackage: error: debian/rules build-arch gave error exit status 2


FWIW, Upstream version 4.5.5 claims [1] to be build against magics 2.24.7

Thanks in advance!

[1] https://software.ecmwf.int/wiki/display/METV/Version+4.5+Updates

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

Kernel: Linux 3.13.0-57-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


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



Bug#791708: needrestart: Add a --quiet option

2015-07-21 Thread Rodrigo Campos
On Tue, Jul 21, 2015 at 01:17:23AM +0200, Thomas Liske wrote:
 Re,
 
 On 07/07/2015 10:22 PM, Rodrigo Campos wrote:
  Thanks a lot for the quick response!
  
  I tried but didn't understand it. How can I make it interactive or auto? 
  Using
  -b with -r doesn't seem to do anything.
 
 The batch mode (-b) just reports pending restarts in a way easy to reuse
 it by other scripts.

But I want it to restart the services.

 
  I want to restart the daemons (sometimes choose which), but without the 
  progress
  bar, ideally. Can this be done with -b ?
  
  Sorry if it can, I've been playing with it and didn't manage to do it.
 
 There is no --quiet option. To auto restart daemons you might use `-r
 a` (and redirect the output into /dev/null).
 
 To make needrestart more quiet you could use the verbose mode and
 redirect the stderr to /dev/null (this sounds somewhat weirrd ;-).
 
  # needrestart -v 2 /dev/null 
  Running kernel seems to be up-to-date.
  Services to be restarted:
  Restart accounts-daemon.service? [Ynas?] ^C

It's a good aproximation, but filtering stderr seems like a no-no.

Is there a reason you don't want a --quiet option ?





Thanks a lot,
Rodrigo


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



Bug#793175: successful upgrade, but with a number of bumps and bugs post-upgrade

2015-07-21 Thread Celejar
Package: upgrade-reports
Severity: normal

I upgraded from Wheezy to Jessie using apt-get, following the instructions in
the release notes. The upgrade worked, but I experienced a number of problems
and bumps on the way, needed to fix various problems post-upgrade, and still
haven't figured some out.

1) I use rungetty via inittab with the --autologin option; this seems to have
stopped working (systemd related?)

2) xfce4-utils no longer exists in stable, so it was removed - and I lost
xfrun4. Took a bit of sleuthing to find that what I now need is
xfce4-appfinder. Perhaps some sort of transitional package should be
established? See also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=793073 .

3) I did the upgrade in X. At some point during the process, X terminated and I
was dumped back at the console, and could have lost data. The notes are
ambiguous on whether upgrading in an xterm is acceptable - they initially
recommend a textmode virtual console, but subsequently imply that an xterm is
fine as long as one isn't using a display manager (which I wasn't - startx from
a virtual console).

4) I had to run several rounds of apt-get upgrade / dist-upgrade. A different
kernel was required, and when I rebooted (somewhere in between apt-get runs),
the system hung on starting bluetooth. The only way to continue the upgrade was
by entering recovery mode and disabling the bluetooth service.

5) Various things I don't particularly want got installed (NetworkManager,
PulseAudio).

6) On my old install, I had my ThinkPad mute button working properly. Now, it
toggles both 'Master' and 'Speaker' off, but only toggles 'Master back on,
requiring a manual toggling of 'Speaker'.

7) Iceweasel's used to look good under Wheezy. Many pages look quite ugly now
(pixelated, jagged). I can't describe exactly which pages or fonts.

There's probably more to say, but this is a start. Thanks much for all the hard
work on Debian!

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

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


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



Bug#789757: [BTS#789757] templates://ejabberd/{templates} : Final update for English review

2015-07-21 Thread Christian PERRIER
Dear Debian maintainer,

On Monday, June 29, 2015, I notified you of the beginning of a review process
concerning debconf templates for ejabberd.

The debian-l10n-english contributors have now reviewed these templates,
and the final proposed changes are attached to this update to the
original bug report.

Please review the suggested changes, and if you have any
objections, let me know in the next 3 days.

However, please try to avoid uploading ejabberd with these changes
right now.

The second phase of this process will begin on Saturday, July 25, 2015, when I 
will
coordinate updates to translations of debconf templates.

The existing translators will be notified of the changes: they will
receive an updated PO file for their language.

Simultaneously, a general call for new translations will be sent to
the debian-i18n mailing list.

Both these calls for translations will request updates to be sent as
individual bug reports. That will probably trigger a lot of bug
reports against your package, but these should be easier to deal with.

The call for translation updates and new translations will run until
about Saturday, August 15, 2015. Please avoid uploading a package with fixed or 
changed
debconf templates and/or translation updates in the meantime. Of
course, other changes are safe.

Please note that this is an approximative delay, which depends on my
own availability to process this work and is influenced by the fact
that I simultaneously work on many packages.

Around Sunday, August 16, 2015, I will contact you again and will send a final 
patch
summarizing all the updates (changes to debconf templates,
updates to debconf translations and new debconf translations).

Again, thanks for your attention and cooperation.


-- 


# These templates have been reviewed by the debian-l10n-english
# team
#
# If modifications/additions/rewording are needed, please ask
# debian-l10n-engl...@lists.debian.org for advice.
#
# Even minor modifications require translation updates and such
# changes should be coordinated with translators and reviewers.

Template: ejabberd/hostname
Type: string
Default: localhost
_Description: Host name for this Jabber server:
 Please enter the host name of this Jabber server (lowercase).

Template: ejabberd/user
Type: string
_Description: Jabber server administrator username:
 Please provide the name of an account to administrate the ejabberd server.
 After the installation of ejabberd you can use this account to log in with any
 Jabber client to do administrative tasks or go to
 http://${hostname}:5280/admin/ and log in with this account to enter the admin
 interface.
 .
 You only need to enter the username part here (such as ${user}), but
 the full Jabber ID (such as ${user}@${hostname}) is required to
 access the ejabberd web interface.
 .
 Please leave this field empty if you don't want to create an
 administrator account automatically.

Template: ejabberd/password
Type: password
_Description: Jabber server administrator password:
 Please enter the password for the administrative user.

Template: ejabberd/verify
Type: password
_Description: Re-enter password to verify:
 Please enter the same administrator password again to verify that you have 
typed it
 correctly.

Template: ejabberd/nomatch
Type: error
_Description: Password input error
 The two passwords you entered were not the same. Please try again.

Template: ejabberd/invaliduser
Type: error
_Description: Invalid administrator account username
 The username you have typed contains forbidden characters. Please respect the 
 JID syntax (http://tools.ietf.org/html/rfc6122#appendix-A.5). If you used
 a full JID (e.g. user@hostname), you have to use the same host name
 you typed into the host name configuration step.
Source: ejabberd
Section: net
Priority: optional
Maintainer: Konstantin Khomoutov flatw...@users.sourceforge.net
Uploaders: Gerfried Fuchs rho...@debian.org, Philipp Huebner 
debala...@debian.org
Build-Depends: debhelper (= 9),
   erlang-asn1, erlang-base, erlang-crypto, erlang-dev (= 1:15.b), 
erlang-eunit, erlang-inets, erlang-lager, erlang-jiffy, erlang-mnesia, 
erlang-parsetools,
   erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-mysql, 
erlang-p1-pam, erlang-p1-pgsql, erlang-p1-sip, erlang-p1-stringprep, 
erlang-p1-stun,
   erlang-p1-tls, erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, 
erlang-p1-zlib,
   erlang-redis-client, erlang-ssl, erlang-xmlrpc,
   hevea, po-debconf, rebar, texlive-latex-base, 
texlive-latex-recommended, texlive-latex-extra
Standards-Version: 3.9.6
Homepage: https://www.ejabberd.im
Vcs-Git: git://git.deb.at/pkg/ejabberd.git
Vcs-Browser: http://git.deb.at/w/pkg/ejabberd.git

Package: ejabberd
Architecture: any
Depends: adduser, erlang-base (= 1:15.b) | ${erlang-abi:Depends}, 
${erlang:Depends}, openssl, ucf, ${misc:Depends}, ${shlibs:Depends},
   erlang-lager, erlang-jiffy, erlang-p1-cache-tab, 
erlang-p1-iconv, 

Bug#792174: tab restoration

2015-07-21 Thread Michael Gilbert
control: tag -1 upstream
control: severity -1 wishlist

 Previously opened tabs and windows are not restored from the previous
 non-incognito session.

Please submit an upstream crbug about this and link back here since
this is not a packaging issue:
http://crbug.com

Best wishes,
Mike


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



Bug#792018: RFS: commandbox/2.0.0 ITP -- CFML REPL, CLI, Package Manager, and Embedded Server

2015-07-21 Thread Brad Wood
Thanks again for the answers Emmanuel.  Due to the large amount of work
that will be involved in packaging every Java dependency, we'll probably
table this effort for now and come back to it at a later date.

Thanks!

~Brad

*ColdBox Platform Evangelist*
*Ortus Solutions, Corp *

E-mail: b...@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com


On Sun, Jul 19, 2015 at 6:37 AM, Emmanuel Bourg ebo...@apache.org wrote:

 Le 18/07/2015 08:18, Brad Wood a écrit :

  A source package makes sense in theory, but how do I create it? Does it
  contain the uncompiled Java and CFML source for the project?  If the
  source package must contain everything necessary to build my project,
  what restrictions are their on the build tools?  Will I have to rewrite
  to something other than Ant?  The current build is rather large and
  includes generation of API docs, and updating our artifacts repo.

 A source package consists in the uncompiled upstream sources plus Debian
 specific metadata and a makefile to build the project. Usually this
 makefile delegates the work to the upstream build system, so you don't
 have to rewrite something from scratch.

 See for example the jsch package [1]. It contains the upstream sources
 and an additional 'debian' directory. In this directory you'll find the
 control file [2] that specifies the name, the description and the
 dependencies of the source and binary packages, and the rules makefile
 [3] that invokes the upstream Ant build file and assembles the jar files
 and documentation produced into the final binary packages. The control
 directory contains other files used by the makefile to build the binary
 package.

 If you clone the jsch package repository you can build the source and
 the binary package with the 'debuild' command (you have to install the
 devscripts package first).


  Does this mean I'd have to go through this entire process for every 3rd
  party lib and get them as separate packages on the Debian repo?  Can I
  solicit sponsorship for packages I don't have any control over?  How do
  you handle different versions of jars?  For instance, my project may
  need version 2.1 even though 2.3 is the latest, etc.  Does that also
  mean I'd have to create a source package and figure out how to compile
  each of the 3rd party libraries?

 You are correct, every dependency must be packaged separately, and you
 can package them even if you aren't an upstream developer (and we'll
 happily support you in the process). If an already packaged dependency
 is incompatible with your project, you can either patch your code to
 work with the version available in Debian, or create a duplicate package
 with a fixed version for this dependency (this isn't the common case
 fortunately).

 Emmanuel Bourg

 [1] http://anonscm.debian.org/cgit/pkg-java/jsch.git/tree/
 [2] http://anonscm.debian.org/cgit/pkg-java/jsch.git/tree/debian/control
 [3] http://anonscm.debian.org/cgit/pkg-java/jsch.git/tree/debian/rules




Bug#792204: Setting default CPU to ultrasparc for -m32 on sparc64 does not work

2015-07-21 Thread John Paul Adrian Glaubitz
On Mon, Jul 20, 2015 at 12:38:45PM +0200, Matthias Klose wrote:
  see sparc-force-cpu.diff, which currently disables this for sparc64 biarch. 
  So
  maybe somebody should just enable it and see if it works as intended, or 
  make it
  working.
 
 ahh, and r7502 disabled it again, so probably somebody should have a look how 
 to
 set the default for the 32bit build.

Ok, but why exactly was it disabled. Were there any issues with
-mcpu=ultrasparc when compiling with -m32? Was this chosen to remain
compatible with older SPARC CPUs?

Adrian

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913


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



Bug#789619: plplot: FTBFS: CMake Error at cmake/modules/pkg-config.cmake:97 (_pkg_check_modules_internal): _pkg_check_modules_internal Macro invoked with incorrect arguments

2015-07-21 Thread Gustavo Prado Alkmim
Package: plplot
Version: 5.10.0+dfsg-1
Followup-For: Bug #789619

I will work on this bug as part of my GSoC and I will send a patch as soon as 
possible. 

Cheers, 

-- System Information:
Debian Release: 7.8
  APT prefers oldstable-updates
  APT policy: (500, 'oldstable-updates'), (500, 'oldstable')
Architecture: mipsel (mips)

Kernel: Linux 3.0.8-12465-g4c51e3b (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


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



Bug#793148: tests fail when running locally in a fresh/clean clone -- require python2.6?

2015-07-21 Thread Yaroslav Halchenko
Package: dh-python
Version: 2.20150719
Severity: normal

$ git describe
2.20150719

$ make tests 21 | tail -n 100
  warnings.warn(msg)
running build
running build_py
creating build
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/foo
copying lib/foo/baz.py - build/lib.linux-x86_64-2.7/foo
copying lib/foo/__init__.py - build/lib.linux-x86_64-2.7/foo
copying lib/foo/jquery.js - build/lib.linux-x86_64-2.7/foo
   dh_auto_test -O--buildsystem=python_distutils
make[3]: Leaving directory '/home/yoh/deb/proj/dh-python/tests/t201'
 fakeroot debian/rules binary
make[3]: Entering directory '/home/yoh/deb/proj/dh-python/tests/t201'
dh binary --buildsystem=python_distutils
   dh_testroot -O--buildsystem=python_distutils
   dh_prep -O--buildsystem=python_distutils
   dh_auto_install -O--buildsystem=python_distutils
python setup.py install --force 
--root=/home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo --no-compile 
-O0 --install-layout=deb
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution 
option: 'zip_safe'
  warnings.warn(msg)
running install
running build
running build_py
running install_lib
creating /home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr
creating /home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr/lib
creating 
/home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr/lib/python2.7
creating 
/home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr/lib/python2.7/dist-packages
creating 
/home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr/lib/python2.7/dist-packages/foo
copying build/lib.linux-x86_64-2.7/foo/baz.py - 
/home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr/lib/python2.7/dist-packages/foo
copying build/lib.linux-x86_64-2.7/foo/jquery.js - 
/home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr/lib/python2.7/dist-packages/foo
copying build/lib.linux-x86_64-2.7/foo/__init__.py - 
/home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr/lib/python2.7/dist-packages/foo
running install_egg_info
Writing 
/home/yoh/deb/proj/dh-python/tests/t201/debian/python-foo/usr/lib/python2.7/dist-packages/Foo-0.1.egg-info
   debian/rules override_dh_install
make[4]: Entering directory '/home/yoh/deb/proj/dh-python/tests/t201'
dh_install
find debian/ -name jquery.js -exec \
ln -fs /usr/share/javascript/jquery/jquery.js '{}' \;
find debian/ -name foo -type d -exec \
ln -s /tmp/ '{}/absolute_link_to_tmp' \;
find debian/ -name foo -type d -exec \
ln -s .. '{}/link_to_parent_dir' \;
DH_VERBOSE=1 ../../dh_python2\
--depends 'SQLAlchemy = 0.6.1'\
--recommends Mako\
--suggests 'Foo = 0.1rc2'\
--suggests 'bar = 1.0'
D: dh_python2 dh_python2:378: version: DEVELV
D: dh_python2 dh_python2:379: argv: ['../../dh_python2', '--depends', 
'SQLAlchemy = 0.6.1', '--recommends', 'Mako', '--suggests', 'Foo = 0.1rc2', 
'--suggests', 'bar = 1.0']
D: dh_python2 dh_python2:380: options: {'depends': ['SQLAlchemy = 0.6.1'], 
'package': None, 'compile_all': False, 'vrange': None, 'clean_pycentral': 
False, 'verbose': False, 'no_ext_rename': False, 'regexpr': None, 'namespaces': 
None, 'suggests': ['Foo = 0.1rc2', 'bar = 1.0'], 'shebang': None, 
'no_shebang_rewrite': False, 'skip_private': False, 'no_package': None, 
'requires': None, 'guess_deps': True, 'O': None, 'ignore_shebangs': False, 
'arch': None, 'clean_dbg_pkg': True, 'ignore_namespace': False, 'recommends': 
['Mako'], 'guess_versions': True}
D: dh_python2 dh_python2:381: args: []
D: dh_python2 dh_python2:383: supported Python versions: 2.6,2.7 (default=2.7)
D: dh_python2 debhelper:98: source=foo, binary packages=['python-foo']
D: dh_python2 dh_python2:400: processing package python-foo...
D: dh_python2 fs:230: removing empty directory: 
debian/python-foo/usr/lib/python2.6/dist-packages/foo
D: dh_python2 fs:230: removing empty directory: 
debian/python-foo/usr/lib/python2.6/dist-packages
D: dh_python2 fs:230: removing empty directory: 
debian/python-foo/usr/lib/python2.6
D: dh_python2 fs:238: package python-foo details = {'shebangs': set(), 
'compile': True, 'requires.txt': set(), 'nsp.txt': set(), 'public_vers': 
{Version('2.6'), Version('2.7')}, 'ext_vers': set(), 'egg-info': 
{'debian/python-foo/usr/lib/python2.7/dist-packages/Foo-0.1.egg-info'}, 
'ext_no_version': set(), 'private_dirs': {}}
Traceback (most recent call last):
  File ../../dh_python2, line 523, in module
main()
  File ../../dh_python2, line 417, in main
share(package, stats, options)
  File ../../dh_python2, line 85, in share
share_2x(dir1, dir2, dc)
  File ../../dh_python2, line 218, in share_2x
common_dirs = dc.subdirs.items()
  File /usr/lib/python3.4/filecmp.py, line 247, in __getattr__
self.methodmap[attr](self)
  File /usr/lib/python3.4/filecmp.py, line 191, in phase4
for x in self.common_dirs:
  File /usr/lib/python3.4/filecmp.py, line 247, in __getattr__
self.methodmap[attr](self)
  File /usr/lib/python3.4/filecmp.py, line 152, in phase2
  

Bug#792204: Setting default CPU to ultrasparc for -m32 on sparc64 does not work

2015-07-21 Thread John Paul Adrian Glaubitz
On Tue, Jul 21, 2015 at 09:13:41PM +0200, Matthias Klose wrote:
  Ok, but why exactly was it disabled. Were there any issues with
  -mcpu=ultrasparc when compiling with -m32? Was this chosen to remain
  compatible with older SPARC CPUs?
 
 no, v8 is ancient. re-enable it and check if it works, and if not, fix it.

Alright, I will. Thanks for the explanation.

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913


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



Bug#793150: h5utils: missing dependency on liboctave

2015-07-21 Thread Sébastien Villemot
Package: h5utils
Version: 1.12.1-2.1
Severity: serious
Control: block 792740 by -1

Dear Maintainer,

h5utils is missing a dependency on liboctave:

$ ldd 
/usr/lib/x86_64-linux-gnu/octave/3.8.2/site/oct/x86_64-pc-linux-gnu/h5read.oct
  […]
  liboctinterp.so.2 = not found
  liboctave.so.2 = not found
  […]


My understanding is that h5read.oct is not detected by dh_shlibdeps because its
executable bit has been previously removed by dh_fixperms (to be verified).

Cheers,

-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://www.dynare.org/sebastien
  `-  GPG Key: 4096R/381A7594


signature.asc
Description: Digital signature


Bug#304406: xscreensaver: New Login button without gdmflexiserver

2015-07-21 Thread Tormod Volden
xscreensaver ships a xscreensaver-wrapper.sh that detects gdm, lightdm
and kdm. So we just need the desktop environments to use this wrapper
instead of calling xscreensaver-daemon directly, then we can remove
the gdmflexiserver default for newLoginCommand. However I don't know
what the status is in KDE, Gnome, Mate or LXDE/XFCE. Or if they don't
call xscreensaver-daemon at all, and leave that to any user who
installs it.


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



Bug#793145: RFS: python-dtcwt/0.10.1-1 [ITP]

2015-07-21 Thread Ghislain Vaillant

Package: sponsorship-requests
Severity: wishlist


Dear mentors,

I am looking for a sponsor for my package python-dtcwt

* Package name: python-dtcwt
  Version : 0.10.1-1
  Upstream Author : Rich Wareham rich.git...@richwareham.com
* URL : https://github.com/rjw57/dtcwt
* License : BSD
  Section : science


It builds those binary packages:

 python-dtcwt - Dual-Tree Complex Wavelet Transform library for Python 2
 python-dtcwt-doc - Documentation of the Python implementation of the 
DT-CWT

 python3-dtcwt - Dual-Tree Complex Wavelet Transform library for Python 3


To access further information about this package, please visit the 
following URL:


 http://mentors.debian.net/package/python-dtcwt


Alternatively, one can download the package with dget using this command:

 dget -x 
http://mentors.debian.net/debian/pool/main/p/python-dtcwt/python-dtcwt_0.10.1-1.dsc



Changes since the last upload:

  * Initial release (Closes: #793139)


Best regards,
Ghislain Vaillant


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



Bug#793147: rustc FTBFS on mipsel: configure: error: unknown CPU type: mips

2015-07-21 Thread Gustavo Prado Alkmim
Package: rustc
Version: 1.1.0+dfsg1-1
Severity: serious
Justification: fails to build from source

Dear Maintainer,

Dear Maintainer,

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

Build Log tail:

SHELL=/bin/sh \
./configure --host=mipsel-unknown-linux-gnu 
--target=mipsel-unknown-linux-gnu --disable-manage-submodules 
--release-channel=stable --prefix=/usr --llvm-root=/usr/lib/llvm-3.6
configure: looking for configure programs
configure: found program cmp
configure: found program mkdir
configure: found program printf
configure: found program cut
configure: found program head
configure: found program grep
configure: found program xargs
configure: found program cp
configure: found program find
configure: found program uname
configure: found program date
configure: found program tr
configure: found program sed
configure: found program file
configure: found program make
configure: inspecting environment
configure: error: unknown CPU type: mips
make[1]: *** [override_dh_auto_configure] Error 1
debian/rules:67: recipe for target 'override_dh_auto_configure' failed
make[1]: Leaving directory '/«BUILDDIR»/rustc-1.1.0+dfsg1'
make: *** [build-arch] Error 2
debian/rules:63: recipe for target 'build-arch' failed
dpkg-buildpackage: error: debian/rules build-arch gave error exit status 2

-- System Information:
Debian Release: 7.8
  APT prefers oldstable-updates
  APT policy: (500, 'oldstable-updates'), (500, 'oldstable')
Architecture: mipsel (mips)

Kernel: Linux 3.0.8-12465-g4c51e3b (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


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



Bug#682372: (no subject)

2015-07-21 Thread Philip Rinn
fixed 682372 4.1-1
thanks


Hi,

this bug should be fixed since rawtherapee 4.1 as the cache handling changed 
with
this version and the cache structure is stable now.

Best,
Philip



signature.asc
Description: OpenPGP digital signature


Bug#791869: lvm2: updating src:lvm2 from 2.02.111-2.2 to 2.02.122-1 breaks booting, mounting LVs other than / fails

2015-07-21 Thread Bastian Blank
On Tue, Jul 21, 2015 at 08:37:16PM +0200, Bastian Blank wrote:
 Yeah.  pvscan should be run by udev for each new device.  For some
 reason this either don't work, breaks in the middle or no idea what
 happens.

Okay, at least I can prove that removing pvscan breaks everything with
similar effects.  However I'm still unable to reproduce the problem
without a sledgehammer.

So the next step could be debugging udev and see what it calls and when.

Bastian

-- 
Those who hate and fight must stop themselves -- otherwise it is not stopped.
-- Spock, Day of the Dove, stardate unknown


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



Bug#792701: RFS: saga/2.2.0+dfsg-1

2015-07-21 Thread Johan Van de Wauw
On Sat, Jul 18, 2015 at 7:13 PM, Sebastiaan Couwenberg
sebas...@xs4all.nl wrote:

 Unfortunately I cannot build the package because the pristine-tar branch
 hasn't been updated for saga_2.2.0+dfsg.orig.tar.xz. Maybe you forgot to
 push the branch?

I've imported it manually and pushed. No idea why it was not added.
Note that I'm mostly offline the next two weeks.

Kind Regards,
Johan


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



Bug#793154: vxl: [LENNA] Lenna filtered is derivative work of non free image

2015-07-21 Thread Bastien Roucariès
Source: vxl
Version: 1.17.0.dfsg-2
Severity: serious
Justification: Policy 2.2.1

Files core/doc/book/lena.* are derivated from playboy centerfold and non free 
lenna.

Please remove.


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



Bug#793155: incorrectly follows symlinks (patch provided)

2015-07-21 Thread Yaroslav Halchenko
Package: metapixel
Version: 1.0.2-7.1+b2
Severity: normal
Tags: patch upstream

If original file comes from another directory, symlink would be relative to 
that directory, not a current one, so mere symlink path would not be 
sufficient.  With a given patch it would get a full path to the original file

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

Kernel: Linux 3.17-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 metapixel depends on:
ii  libc62.19-18
ii  libgif4  4.1.6-11
ii  libjpeg62-turbo  1:1.4.0-7
ii  libpng12-0   1.2.50-2+b2
ii  zlib1g   1:1.2.8.dfsg-2+b1

metapixel recommends no packages.

metapixel suggests no packages.

-- no debconf information
--- /usr/bin/metapixel-prepare	2014-10-14 19:15:49.0 -0400
+++ bin/metapixel-prepare	2015-07-21 15:45:28.405104037 -0400
@@ -27,6 +27,7 @@
 
 use Getopt::Long;
 use File::Basename;
+use Cwd 'abs_path';
 use IO::Handle;
 
 sub disambiguate_filename {
@@ -121,12 +122,14 @@
 
 	print Testing file: $fullname\n if $DEBUG;
 
-	while (-l $fullname) {
+	if (-l $fullname) {
 		print Following symlink: $fullname\n if $DEBUG;
-		$fullname = readlink($fullname);
+		# Get full path since it might be relevant to original directory
+		$fullname = abs_path($fullname);
+		print Got: $fullname\n if $DEBUG;
 	}
 
-	if (-f $fullname  -r $fullname) {
+	if (-f $fullname  -e $fullname) {
 		my ($name, $path, $suffix) = fileparse($fullname);
 
 		print Processing: $fullname\n if $DEBUG;


Bug#681860: xscreensaver-data should recommends vs. depends on libwww-perl

2015-07-21 Thread Tormod Volden
Just to summarize this for later:
- Upstream doesn't use url by default, so it will run fine without libperl-www
- Debian, in its branding patches, sets url (for planet.debian.org) as
default so some tools will complain if libperl-www is not installed.

If we modify our branding patches to use text instead, we can safely
move it to Suggests instead of Recommends. But as long as we use url
as default, Recommends seems correct.


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



Bug#793156: RFS: dvbcut/0.5.4+svn178-10

2015-07-21 Thread Bernhard Übelacker
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package dvbcut

 * Package name: dvbcut
   Version : 0.5.4+svn178-10
   Upstream Author : Sven Over
 * URL : http://dvbcut.sourceforge.net/
 * License : GPL-2+
   Section : graphics

It builds those binary packages:

dvbcut - Qt application for cutting parts out of DVB streams

To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/dvbcut


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/d/dvbcut/dvbcut_0.5.4+svn178-10.dsc


Changes since the last upload:

dvbcut (0.5.4+svn178-10) unstable; urgency=medium

  * Make storing of settings work with Qt4 (Closes: #772413)
  * Make keyboard modifier for mousewheel work with Qt4 (Closes: #772346)
  (Both found and fixed by Tim Riemenschneider, thanks)
  * Add to help page the mousewheel keyboard modifiers
  * Fix headless index creation on ARM architecture.
  * Push stanards version to 3.9.6.
  * Transition from libav to ffmpeg (Closes: #793089)
  (Thanks to Sebastian Ramacher and Andreas Cadhalpun)

 -- Bernhard Übelacker bernha...@vr-web.de  Tue, 21 July 2015 18:08:10 +0200


Regards,
   Bernhard Übelacker


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



Bug#793153: please consider installing .target files as well

2015-07-21 Thread Marc Haber
Package: dh-systemd
Version: 1.23
Severity: wishlist
File: /usr/bin/dh_systemd_enable

Hi,

dh_systemd_enable behaves differently for service, socket, and tmpfile
units where it installs the actual unit file additionally to
generating postinst code.

Please consider doing this for other unit types (such as target) as
well. If there is a reason for not doing so, please document that
reason and suggest installing the file manually before
dh_systemd_enable is called.

Greetings
Marc


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



  1   2   3   >