Re: paulstretch dbg symbols missing

2016-10-30 Thread Jaromír Mikeš
2016-10-30 22:27 GMT+01:00 Mattia Rizzolo :
> On Sun, Oct 30, 2016 at 09:25:45PM +, Mattia Rizzolo wrote:
>> On Sun, Oct 30, 2016 at 10:00:24PM +0100, Jaromír Mikeš wrote:
>> > while building paulstretch package dbgsym package doesn't contain
>> > debugging symbols.
>> >
>> > W: paulstretch-dbgsym: debug-file-with-no-debug-symbols
>> > usr/lib/debug/.build-id/6d/7f1e5e9e47ab9925bdea21e6907b6afb19.debug
>> >
>> > Any help please?
>>
>> That's because your package is not respecting dpg-buildflags(1) (also as
>> warned by bls[1].
>>
>> You need to build with -g to get debug symbol and your package is not
>> building with that flag; also please don't inject that flag only, but
>> have your package respect all of the common build flags as exported by
>> dpkg, and only if needed tweak them by acting on the
>> DEB_BUILD_MAINT_OPTION variable as documented in dpkg-buildflags(1).
>>
>> [1] https://qa.debian.org/bls/packages/p/paulstretch.html
>
> While on it let me suggest an edit: drop this from d/rules:
>
> override_dh_auto_install:
> mkdir -p $(DESTDIR)/usr/bin/
> cp -a paulstretch $(DESTDIR)/usr/bin/
>
> and instead use the d/paulstretch.install that you already have.

Hi Mattia,

thank you for help ... but unfortunately this doesn't make the magic
Build flags still not respected :(

best regards

mira

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#842653: ableton-link: FTBFS on non-Linux: htonll/ntohll undeclared

2016-10-30 Thread Aaron M. Ucko
Source: ableton-link
Version: 1.0.0+dfsg-2
Severity: important
Tags: upstream
Justification: fails to build from source

Thanks for taking care of #842410 promptly!  ableton-link now builds
on all Linux architectures, but fails on kFreeBSD and the Hurd:

  
/«BUILDDIR»/ableton-link-1.0.0+dfsg/include/ableton/discovery/NetworkByteStreamSerializable.hpp:204:41:
 error: 'htonll' was not declared in this scope
 return detail::copyToByteStream(htonll(ll), std::move(out));

The problem appears to be that there's no definition of htonll for
generic POSIX systems, just for Linux and other specific OSes.  I'd
recommend arranging to use bswap_64 on all systems using the GNU C
Library (whose headers define __GLIBC__).

Could you please take a look?

Thanks!

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
http://www.mit.edu/~amu/ | http://stuff.mit.edu/cgi/finger/?a...@monk.mit.edu

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#842651: skip empty files

2016-10-30 Thread Antoine Beaupré
Source: kodi
Severity: wishlist
Tags: patch

Hi,

I am a heavy user of git-annex. In case you are unfamiliar with the
software, it's a tool to allow easier archiving of large files, using
git as a backend. Files are not stored directly in git, but rather, as
symlinks to real object files.

https://git-annex.branchable.com/

On my laptop, i have a part of my main video library that resides on
another machine. This means that some of those symlinks (the majority
of them, in fact) are broken symlinks.

Yet Kodi happily parses those files as if they were present, and shows
them as real movies when I try to select them. When I do, Kodi says
that the file is missing from the library and oh, do I want to remove
it?

This is a bit annoying. It seems to me empty files are obviously
invalid and should just not show up in the interface.

I looked at implementing a workaround for this by patching Kodi to
ignore empty file sets. I am not very familiar with the internals of
Kodi, but I hope I have found the right place to make such a change. I
am in the process of rebuilding a backport with the patch to test this
(which takes a long time!) but I thought I would share the patch here
to get more feedback.

I am hesitant in sharing directly with upstream because I am afraid
they will refuse supporting my exotic (git-annex) configuration: I
have in the past been told that my video library wasn't curated the
right way and their parser was expecting certain things to be stored
in a certain way (e.g. movie file titles in a certain ways, and so
on). The problem is changing the way git-annex works is even harder:
there is an issue opened on that side as well, but it's unfortunately
not seeing a lot of movement either, being a major architectural
change:

https://git-annex.branchable.com/todo/hide_missing_files/

So I figured a 2-line patch in Kodi would fix my immediate problem
provided that, of course, it works at all. :)

I'll give more information when my tests are complete.

-- System Information:
Debian Release: 8.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable'), (1, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.7.0-0.bpo.1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_CA.UTF-8, LC_CTYPE=fr_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
Description: skip empty files in scanning.
Author: Antoine Beaupré 
Forwarded: no
Last-Update: 2016-10-30

--- kodi-16.1+dfsg1.orig/xbmc/video/VideoInfoScanner.cpp
+++ kodi-16.1+dfsg1/xbmc/video/VideoInfoScanner.cpp
@@ -305,6 +305,10 @@ namespace VIDEO
   { // need to fetch the folder
 CDirectory::GetDirectory(strDirectory, items, g_advancedSettings.m_videoExtensions);
 items.Stack();
+if (items.m_dwSize <= 0)
+{
+  bSkip = true;
+}
 
 // check whether to re-use previously computed fast hash
 if (!CanFastHash(items, regexps) || fastHash.empty())
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#842453: marked as done (frei0r-plugins: defish plugin crashes with undefined symbol hypotf)

2016-10-30 Thread Debian Bug Tracking System
Your message dated Mon, 31 Oct 2016 00:15:01 +0100
with message-id 
and subject line Re: Bug#842453: frei0r-plugins: defish plugin crashes with 
undefined symbol hypotf
has caused the Debian Bug report #842453,
regarding frei0r-plugins: defish plugin crashes with undefined symbol hypotf
to be marked as done.

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

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


-- 
842453: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=842453
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: frei0r-plugins
Version: 1:1.5-dmo1
Severity: important
File: frei0r-plugins

Dear Maintainer,

   * What led up to the situation?

Using the Defish plugin in Kdenlive

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

When rendering, the plugin crashes. This is what Kdenlive reported:

/usr/bin/melt: symbol lookup error: /usr/lib/frei0r-1/defish0r.so:
undefined symbol: hypotf

   * What was the outcome of this action?
   * What outcome did you expect instead?

This makes the plugin not usable


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

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

Versions of packages frei0r-plugins depends on:
ii  libc6 2.24-5
ii  libcairo2 1.14.6-1+b1
ii  libgavl1  1.4.0-4
ii  libgcc1   1:6.2.0-9
ii  libopencv-core2.4v5   2.4.9.1+dfsg-2.1
ii  libopencv-imgproc2.4v52.4.9.1+dfsg-2.1
ii  libopencv-objdetect2.4v5  2.4.9.1+dfsg-2.1
ii  libopencv-video2.4v5  2.4.9.1+dfsg-2.1
ii  libstdc++66.2.0-9

frei0r-plugins recommends no packages.

Versions of packages frei0r-plugins suggests:
pn  opencv-data  

-- no debconf information
--- End Message ---
--- Begin Message ---
On 10/29/2016 01:24 PM, Peter D'Hoye wrote:
> Version: 1:1.5-dmo1

hi.
if you are using deb-multimedia.org, you should be aware that you have
left the path of Debian support.
file any bugs you encounter directly at deb-multimedia.org.

please do not abuse the official Debian support for any problems you
encounter while using software installed via deb-multimedia.org.

see also:
https://wiki.debian.org/DebianMultimedia/FAQ

fgmdsar
IOhannes



signature.asc
Description: OpenPGP digital signature
--- End Message ---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Processed: Re: Bug#841733: Transition Opencv 3.1

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

> block 841733 with 841245 841245 841412 841407 841246 841413 841406 812032 
> 841370 841246 841408 841246 841409 841405 841416 841410 841287 841411
Bug #841733 [release.debian.org] Transition Opencv 3.1
841733 was not blocked by any bugs.
841733 was not blocking any bugs.
Added blocking bug(s) of 841733: 841408, 841245, 841246, 841370, 841405, 
841416, 841410, 841406, 812032, 841287, 841407, 841412, 841411, 841409, and 
841413
> thanks
Stopping processing here.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: paulstretch dbg symbols missing

2016-10-30 Thread Mattia Rizzolo
On Sun, Oct 30, 2016 at 09:25:45PM +, Mattia Rizzolo wrote:
> On Sun, Oct 30, 2016 at 10:00:24PM +0100, Jaromír Mikeš wrote:
> > while building paulstretch package dbgsym package doesn't contain
> > debugging symbols.
> > 
> > W: paulstretch-dbgsym: debug-file-with-no-debug-symbols
> > usr/lib/debug/.build-id/6d/7f1e5e9e47ab9925bdea21e6907b6afb19.debug
> > 
> > Any help please?
> 
> That's because your package is not respecting dpg-buildflags(1) (also as
> warned by bls[1].
> 
> You need to build with -g to get debug symbol and your package is not
> building with that flag; also please don't inject that flag only, but
> have your package respect all of the common build flags as exported by
> dpkg, and only if needed tweak them by acting on the
> DEB_BUILD_MAINT_OPTION variable as documented in dpkg-buildflags(1).
> 
> [1] https://qa.debian.org/bls/packages/p/paulstretch.html

While on it let me suggest an edit: drop this from d/rules:

override_dh_auto_install:
mkdir -p $(DESTDIR)/usr/bin/ 
cp -a paulstretch $(DESTDIR)/usr/bin/

and instead use the d/paulstretch.install that you already have.

-- 
regards,
Mattia Rizzolo

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


signature.asc
Description: PGP signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Re: paulstretch dbg symbols missing

2016-10-30 Thread Mattia Rizzolo
On Sun, Oct 30, 2016 at 10:00:24PM +0100, Jaromír Mikeš wrote:
> while building paulstretch package dbgsym package doesn't contain
> debugging symbols.
> 
> W: paulstretch-dbgsym: debug-file-with-no-debug-symbols
> usr/lib/debug/.build-id/6d/7f1e5e9e47ab9925bdea21e6907b6afb19.debug
> 
> Any help please?

That's because your package is not respecting dpg-buildflags(1) (also as
warned by bls[1].

You need to build with -g to get debug symbol and your package is not
building with that flag; also please don't inject that flag only, but
have your package respect all of the common build flags as exported by
dpkg, and only if needed tweak them by acting on the
DEB_BUILD_MAINT_OPTION variable as documented in dpkg-buildflags(1).

[1] https://qa.debian.org/bls/packages/p/paulstretch.html

-- 
regards,
Mattia Rizzolo

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


signature.asc
Description: PGP signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#842410: marked as done (ableton-link: FTBFS: -m64 considered harmful)

2016-10-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 Oct 2016 21:19:10 +
with message-id 
and subject line Bug#842410: fixed in ableton-link 1.0.0+dfsg-2
has caused the Debian Bug report #842410,
regarding ableton-link: FTBFS: -m64 considered harmful
to be marked as done.

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

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


-- 
842410: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=842410
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ableton-link
Version: 1.0.0+dfsg-1
Severity: important
Justification: fails to build from source

Builds of ableton-link for most architectures failed due to its
explicit use of -m64.  This option is appropriate for Debian package
builds only in very specialized circumstances, since the compiler
already targets the system's native architecture by default; please
fix the build system not to supply -m64 at all.

Thanks!

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
http://www.mit.edu/~amu/ | http://stuff.mit.edu/cgi/finger/?a...@monk.mit.edu
--- End Message ---
--- Begin Message ---
Source: ableton-link
Source-Version: 1.0.0+dfsg-2

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

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

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

Debian distribution maintenance software
pp.
IOhannes m zmölnig (Debian/GNU)  (supplier of updated 
ableton-link package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 30 Oct 2016 20:49:33 +0100
Source: ableton-link
Binary: ableton-link-dev ableton-link-utils ableton-link-utils-gui
Architecture: source
Version: 1.0.0+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: IOhannes m zmölnig (Debian/GNU) 
Description:
 ableton-link-dev - synchronizes musical applications on multiple devices - 
developme
 ableton-link-utils - synchronizes musical applications on multiple devices - 
cmdline u
 ableton-link-utils-gui - synchronizes musical applications on multiple devices 
- GUI utils
Closes: 842410
Changes:
 ableton-link (1.0.0+dfsg-2) unstable; urgency=medium
 .
   * Patch to disable '-m32/-m64' by default. (Closes: #842410)
   * Fixed install-path for headers
   * Fixed Vcs-Git link
Checksums-Sha1:
 b71bd5150e010605d2b0aed6ca55c574c43157fe 2224 ableton-link_1.0.0+dfsg-2.dsc
 fad7fc43c0b19342b68fe7bc8b70830439033dfd 7856 
ableton-link_1.0.0+dfsg-2.debian.tar.xz
Checksums-Sha256:
 986d94263402c293566372673a0c1fd8da31e5d1a2ae9438e46b1a702933d998 2224 
ableton-link_1.0.0+dfsg-2.dsc
 7c320418966741f32609bd81b3e8348ce5a5141592b8e5439bd048edea5cadef 7856 
ableton-link_1.0.0+dfsg-2.debian.tar.xz
Files:
 110708dea30e8db2a5fcf59bb2910f64 2224 sound optional 
ableton-link_1.0.0+dfsg-2.dsc
 2bdab5dcb12492db26e2f978d9208870 7856 sound optional 
ableton-link_1.0.0+dfsg-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJYFlHZAAoJELZQGcR/ejb4CmoP/Rfayhd63oqUpdO5ZXpOXciF
2D9cnVV9ae+Cy0Z2wRygwi2k+lE8IHGOCgmtUWLX5GVqPXKh9knmmMPEEFkQShde
MSMmPtYZSZ65LYwXdCuGETHwKNJwpUYUDVB61pZkW0KxtR835Z451+yZSK3ghRCo
n2C7yOnnUEsMiWow6uozulaQLHlsKyRGZ5+Y3ZO01Fkc0DrWAyKynvUoIGKsTwag
gMr08kYvbeSlhiFRTMJKSmoA05l0WYhKL8aVlNcyCh+QI1MtTDTKSOXYAz4Zs45x
NAGVSA420el84NzLy/ZQM/fUmdq7cYv2wiVMYO3KiKL3bGH1klNhOclZG/gzKBAr
GIuPL5VNAaGsxO721RlZtFj2ttAxFsIWE6iIjEas0xD+o/U+KwEYo05q5txUmHtk
jksFZFotk5FYL/VoZuC8CHNlrrXqlkRrcXvZeYFZnYQNll01+ht8eKDHbe7qA7t1
hVoGjqd/v6m1BJE3PAk7EO6AAzOuoTaGE3PQjlPjYDqGfDesiEwY6Afohs3xmrem
w/UQQcfmG79yZvrf9YmVE6dHlMX8j0oKTz4D3T/8ZX9eQ2Ty8JzKRSE9nplccqSX
Are0XmxP5qk/Vm1ruP/2kYsy5Ah+nougp/JVTYMOdJNL3DuhCqN7ukTOSm62JmkZ
b/JxIvMVPteMMDWlVks5
=hW8f
-END PGP SIGNATURE End Message ---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

ableton-link_1.0.0+dfsg-2_amd64.changes ACCEPTED into unstable

2016-10-30 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 30 Oct 2016 20:49:33 +0100
Source: ableton-link
Binary: ableton-link-dev ableton-link-utils ableton-link-utils-gui
Architecture: source
Version: 1.0.0+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: IOhannes m zmölnig (Debian/GNU) 
Description:
 ableton-link-dev - synchronizes musical applications on multiple devices - 
developme
 ableton-link-utils - synchronizes musical applications on multiple devices - 
cmdline u
 ableton-link-utils-gui - synchronizes musical applications on multiple devices 
- GUI utils
Closes: 842410
Changes:
 ableton-link (1.0.0+dfsg-2) unstable; urgency=medium
 .
   * Patch to disable '-m32/-m64' by default. (Closes: #842410)
   * Fixed install-path for headers
   * Fixed Vcs-Git link
Checksums-Sha1:
 b71bd5150e010605d2b0aed6ca55c574c43157fe 2224 ableton-link_1.0.0+dfsg-2.dsc
 fad7fc43c0b19342b68fe7bc8b70830439033dfd 7856 
ableton-link_1.0.0+dfsg-2.debian.tar.xz
Checksums-Sha256:
 986d94263402c293566372673a0c1fd8da31e5d1a2ae9438e46b1a702933d998 2224 
ableton-link_1.0.0+dfsg-2.dsc
 7c320418966741f32609bd81b3e8348ce5a5141592b8e5439bd048edea5cadef 7856 
ableton-link_1.0.0+dfsg-2.debian.tar.xz
Files:
 110708dea30e8db2a5fcf59bb2910f64 2224 sound optional 
ableton-link_1.0.0+dfsg-2.dsc
 2bdab5dcb12492db26e2f978d9208870 7856 sound optional 
ableton-link_1.0.0+dfsg-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJYFlHZAAoJELZQGcR/ejb4CmoP/Rfayhd63oqUpdO5ZXpOXciF
2D9cnVV9ae+Cy0Z2wRygwi2k+lE8IHGOCgmtUWLX5GVqPXKh9knmmMPEEFkQShde
MSMmPtYZSZ65LYwXdCuGETHwKNJwpUYUDVB61pZkW0KxtR835Z451+yZSK3ghRCo
n2C7yOnnUEsMiWow6uozulaQLHlsKyRGZ5+Y3ZO01Fkc0DrWAyKynvUoIGKsTwag
gMr08kYvbeSlhiFRTMJKSmoA05l0WYhKL8aVlNcyCh+QI1MtTDTKSOXYAz4Zs45x
NAGVSA420el84NzLy/ZQM/fUmdq7cYv2wiVMYO3KiKL3bGH1klNhOclZG/gzKBAr
GIuPL5VNAaGsxO721RlZtFj2ttAxFsIWE6iIjEas0xD+o/U+KwEYo05q5txUmHtk
jksFZFotk5FYL/VoZuC8CHNlrrXqlkRrcXvZeYFZnYQNll01+ht8eKDHbe7qA7t1
hVoGjqd/v6m1BJE3PAk7EO6AAzOuoTaGE3PQjlPjYDqGfDesiEwY6Afohs3xmrem
w/UQQcfmG79yZvrf9YmVE6dHlMX8j0oKTz4D3T/8ZX9eQ2Ty8JzKRSE9nplccqSX
Are0XmxP5qk/Vm1ruP/2kYsy5Ah+nougp/JVTYMOdJNL3DuhCqN7ukTOSm62JmkZ
b/JxIvMVPteMMDWlVks5
=hW8f
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#842620: mpv: OSD is gone‽

2016-10-30 Thread James Cowgill
Hi,

On 30/10/16 20:50, Salvo Tomaselli wrote:
> Package: mpv
> Version: 0.21.0-2
> Severity: normal
> 
> Dear Maintainer,
> after upgrade, the osd that appears when moving the mouse seems to be gone.

Try moving your mouse to the bottom of the window.

In mpv 0.21 the default OSD layout was changed from 'box' to
'bottombar'. You can get the old behavior by using:

 mpv --script-opts=osc-layout=box

Thanks,
James



signature.asc
Description: OpenPGP digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

paulstretch dbg symbols missing

2016-10-30 Thread Jaromír Mikeš
Hi,

while building paulstretch package dbgsym package doesn't contain
debugging symbols.

W: paulstretch-dbgsym: debug-file-with-no-debug-symbols
usr/lib/debug/.build-id/6d/7f1e5e9e47ab9925bdea21e6907b6afb19.debug

Any help please?

best regards

mira

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#842620: mpv: OSD is gone‽

2016-10-30 Thread Salvo Tomaselli
Package: mpv
Version: 0.21.0-2
Severity: normal

Dear Maintainer,
after upgrade, the osd that appears when moving the mouse seems to be gone.

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

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

Versions of packages mpv depends on:
ii  libasound2  1.1.2-1
ii  libass5 0.13.4-1
ii  libavcodec577:3.1.5-1
ii  libavdevice57   7:3.1.5-1
ii  libavfilter67:3.1.5-1
ii  libavformat57   7:3.1.5-1
ii  libavutil55 7:3.1.5-1
ii  libbluray1  1:0.9.3-2
ii  libc6   2.24-5
ii  libcdio-cdda1   0.83-4.2+b1
ii  libcdio-paranoia1   0.83-4.2+b1
ii  libcdio13   0.83-4.2+b1
ii  libdrm2 2.4.71-1
ii  libdvdnav4  5.0.3-2
ii  libdvdread4 5.0.3-2
ii  libegl1-mesa [libegl1-x11]  12.0.3-3
ii  libenca01.19-1
ii  libgbm1 12.0.3-3
ii  libgl1-mesa-glx [libgl1]12.0.3-3
ii  libguess1   1.2-1.1
ii  libjack-jackd2-0 [libjack-0.116]1.9.10+20150825git1ed50c92~dfsg-3
ii  libjpeg62-turbo 1:1.5.1-2
ii  liblcms2-2  2.7-1
ii  liblua5.2-0 5.2.4-1.1+b1
ii  libpulse0   9.0-4
ii  librubberband2  1.8.1-6+b1
ii  libsdl2-2.0-0   2.0.4+dfsg2-1
ii  libsmbclient2:4.4.6+dfsg-2
ii  libsndio6.1 1.1.0-2
ii  libswresample2  7:3.1.5-1
ii  libswscale4 7:3.1.5-1
ii  libv4l-01.10.1-1
ii  libva-drm1  1.7.2-1
ii  libva-wayland1  1.7.2-1
ii  libva-x11-1 1.7.2-1
ii  libva1  1.7.2-1
ii  libvdpau1   1.1.1-5
ii  libwayland-client0  1.11.0-2
ii  libwayland-cursor0  1.11.0-2
ii  libwayland-egl1-mesa [libwayland-egl1]  12.0.3-3
ii  libx11-62:1.6.3-1
ii  libxext62:1.3.3-1
ii  libxinerama12:1.1.3-1+b1
ii  libxkbcommon0   0.6.1-1
ii  libxrandr2  2:1.5.0-1
ii  libxss1 1:1.2.2-1
ii  libxv1  2:1.0.10-1+b1
ii  zlib1g  1:1.2.8.dfsg-2+b1

Versions of packages mpv recommends:
ii  xdg-utils   1.1.1-1
ii  youtube-dl  2016.06.25-2

mpv suggests no packages.

-- no debconf information

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processing of ableton-link_1.0.0+dfsg-2_amd64.changes

2016-10-30 Thread Debian FTP Masters
ableton-link_1.0.0+dfsg-2_amd64.changes uploaded successfully to localhost
along with the files:
  ableton-link_1.0.0+dfsg-2.dsc
  ableton-link_1.0.0+dfsg-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processed: Bug#842410 marked as pending

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

> tag 842410 pending
Bug #842410 [src:ableton-link] ableton-link: FTBFS: -m64 considered harmful
Added tag(s) pending.
> thanks
Stopping processing here.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#842613: vlc: should warn when choosing a DVB channel that isn't from the same transponder.

2016-10-30 Thread Jiff
Package: src:vlc
Version: 2.2.4-7
Severity: wishlist

Dear Pa' Intainer,

   * What led up to the situation?

Changing DVB channel that is on another transponder than the one
I was recording.

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

Changing DVB channel by cliking another one in my list (coming from
~/channel.conf) that isn't on the same transponder.

   * What was the outcome of this action?

Channel changed, which occured "normally", clobbering my previous channel
recording: it stopped without any warning.

   * What outcome did you expect instead?

Vlc to act the same as Kaffeine: popping a warning up that explains the
new chosen channel being on another transponder the former recording
will be stopped, AND (obviously?) allow channel change smoothly when the
new channel is on the same transponder without any warning and without
stopping the current recording.

Have a nice daight (or nighday) :)



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

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

Versions of packages vlc depends on:
ii  dpkg 1.18.10
ii  vlc-bin  2.2.4-7
ii  vlc-l10n 2.2.4-7
ii  vlc-plugin-base  2.2.4-7
ii  vlc-plugin-qt2.2.4-7
ii  vlc-plugin-video-output  2.2.4-7

Versions of packages vlc recommends:
ii  vlc-plugin-notify  2.2.4-7
ii  vlc-plugin-samba   2.2.4-7
ii  vlc-plugin-skins2  2.2.4-7
ii  vlc-plugin-video-splitter  2.2.4-7
ii  vlc-plugin-visualization   2.2.4-7

vlc suggests no packages.

Versions of packages vlc-nox depends on:
ii  dpkg 1.18.10
ii  vlc-bin  2.2.4-7
ii  vlc-plugin-base  2.2.4-7

Versions of packages libvlc5 depends on:
ii  dpkg 1.18.10
ii  libc62.24-5
ii  libvlccore8  2.2.4-7

Versions of packages libvlc5 recommends:
ii  libvlc-bin  2.2.4-7

Versions of packages libvlccore8 depends on:
ii  dpkg 1.18.10
ii  libc62.24-5
ii  libdbus-1-3  1.10.12-1
ii  libidn11 1.33-1

Versions of packages libvlccore8 recommends:
ii  libproxy-tools  0.4.11-5

Versions of packages vlc-plugin-notify depends on:
ii  dpkg1.18.10
ii  libc6   2.24-5
ii  libgdk-pixbuf2.0-0  2.36.0-1
ii  libglib2.0-02.50.1-1
ii  libgtk2.0-0 2.24.31-1
ii  libnotify4  0.7.7-1
ii  libvlccore8 2.2.4-7

Versions of packages vlc-plugin-zvbi depends on:
ii  dpkg 1.18.10
ii  libc62.24-5
ii  libvlccore8  2.2.4-7
ii  libzvbi0 0.2.35-12

-- no debconf information

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


snd 16.9-1 MIGRATED to testing

2016-10-30 Thread Debian testing watch
FYI: The status of the snd source package
in Debian's testing distribution has changed.

  Previous version: 16.8-1
  Current version:  16.9-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


ardour 1:5.4.0~dfsg-2 MIGRATED to testing

2016-10-30 Thread Debian testing watch
FYI: The status of the ardour source package
in Debian's testing distribution has changed.

  Previous version: 1:5.3~dfsg-1
  Current version:  1:5.4.0~dfsg-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#842583: paulstretch: please make the build reproducible

2016-10-30 Thread Reiner Herrmann
Source: paulstretch
Version: 2.2-2-3
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: fileordering
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi!

While working on the "reproducible builds" effort [1], we have noticed
that paulstretch could not be built reproducibly.
The fileorder during linking varies.

The attached patch fixes this by sorting the list of source files with
ls.

Regards,
 Reiner

[1]: https://wiki.debian.org/ReproducibleBuilds
diff --git a/debian/rules b/debian/rules
index 2ddcc13..d32768e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,7 +10,7 @@ override_dh_auto_build:
 	# ./compile_linux_fftw.sh with custom LDFLAGS
 	fluid -c GUI.fl 
 	fluid -c FreeEditUI.fl
-	g++  GUI.cxx FreeEditUI.cxx *.cpp Input/*.cpp Output/*.cpp \
+	g++  GUI.cxx FreeEditUI.cxx `LC_ALL=C ls *.cpp Input/*.cpp Output/*.cpp` \
 	  -o paulstretch \
 	  $(LDFLAGS) \
 	  `fltk-config --cflags` `fltk-config --ldflags` \


signature.asc
Description: PGP signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#842513: vlc: immediate crash on launch on powerpc

2016-10-30 Thread James Cowgill
Control: tags -1 - help
Control: severity -1 important
Control: retitle -1 vlc: should prevent installation on powerpc G3

Hi,

On 30/10/16 00:16, Robert Ou wrote:
> On Sat, Oct 29, 2016 at 3:43 PM, James Cowgill  wrote:
>> Control: tags -1 help
>> Control: severity -1 grave
>>
>> Hi,
>>
>> On 29/10/16 23:00, Robert Ou wrote:
>>> Package: src:vlc
>>> Version: 2.2.4-7
>>> Severity: normal
>>>
>>> Dear Maintainer,
>>>
>>> I decided I wanted to test the performance of Debian PowerPC on my
>>> ancient iMac, and I discovered that vlc will immediately crash with an
>>> illegal instruction right after showing the "Privacy and Network Access
>>> Policy" window and before showing the main window. The crashes look like
>>> the following:
>>>
>>> [ 1560.952016] vlc[997]: unhandled signal 4 at 0ea48f58 nip 0ea48f58 lr 
>>> 0ea48f4c code 30001
>>
>> As powerpc is a release architecture, this bug is RC.
>>
>> I tried running vlc on partch. It managed to get further, but then
>> segfaulted inside QT so it's probably a separate issue. I also had to
>> run it in xvfb so it probably gets different results.
>>
>> Specifically what powerpc hardware do you have? Could you run vlc within
>> gdb to determine which instruction it SIGILLs on (try 'layout asm')?
> 
> I was testing on a first-generation iMac with a 333 MHz PowerPC 750
> (G3). Running vlc under gdb shows that the crash occurs in
> libqt4_plugin.so in QRect::adjusted. The crash occurs on a "lvx
> v0,r10,r5" opcode, which is an Altivec opcode. The G3 however does not
> support Altivec. Here is a backtrace and some more debug information:

This explains it. From the PowerPC FAQ:
https://wiki.debian.org/PowerPC/FAQ#VLC_crashes_on_startup._What.27s_up_with_that.3F

"
If VLC immediately crashes, it's probably because you're on a G3 and
VLC was compiled with Altivec instructions. To use VLC on a G3, you
must compile it with the configure option --disable-altivec.
"

Having said that, I think adding something to vlc's preinst to prevent
installation on systems without altivec would be a good idea here.

I'm not sure going through all the trouble of compiling vlc twice so it
works on the G3 is worth it here - especially since powerpc may not be
a release architecture in 24 hours...

Thanks,
James



signature.asc
Description: OpenPGP digital signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Processed: Re: Bug#842513: vlc: immediate crash on launch on powerpc

2016-10-30 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 - help
Bug #842513 [src:vlc] vlc: immediate crash on launch on powerpc
Removed tag(s) help.
> severity -1 important
Bug #842513 [src:vlc] vlc: immediate crash on launch on powerpc
Severity set to 'important' from 'grave'
> retitle -1 vlc: should prevent installation on powerpc G3
Bug #842513 [src:vlc] vlc: immediate crash on launch on powerpc
Changed Bug title to 'vlc: should prevent installation on powerpc G3' from 
'vlc: immediate crash on launch on powerpc'.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#842522: mpv: Symbol lookup error in libass.so.5

2016-10-30 Thread Sebastian Ramacher
Control: tags -1 + moreinfo

On 2016-10-30 03:34:55, Трезвый Дворник wrote:
> Package: mpv
> Version: 0.21.0-2
> Severity: normal
> 
> Dear Maintainer,
> 
> It is impossible to run mpv using the libass5 package from repository.
> 
> # dpkg -i ./libass5_0.13.2-1_amd64.deb
> dpkg: warning: downgrading libass5:amd64 from 0.13.3-1 to 0.13.2-1
> (Reading database ... 285271 files and directories currently installed.)
> Preparing to unpack ./libass5_0.13.2-1_amd64.deb ...
> Unpacking libass5:amd64 (0.13.2-1) over (0.13.3-1) ...
> Setting up libass5:amd64 (0.13.2-1) ...
> Processing triggers for libc-bin (2.24-5) ...
> 
> $ mpv
> mpv 0.21.0 (C) 2000-2016 mpv/MPlayer/mplayer2 projects
>  built on UNKNOWN
> ffmpeg library versions:
>libavutil   55.28.100
>libavcodec  57.48.101
>libavformat 57.41.100
>libswscale  4.1.100
>libavfilter 6.47.100
>libswresample   2.1.100
> ffmpeg version: 3.1.5-1
> 
> Usage:   mpv [options] [url|path/]filename
> 
> Basic options:
>  --start=seek to given (percent, seconds, or hh:mm:ss) position
>  --no-audiodo not play sound
>  --no-videodo not play video
>  --fs  fullscreen playback
>  --sub-file= specify subtitle file to use
>  --playlist= specify playlist file
> 
>  --list-optionslist all mpv options
>  --h= print options which match the given shell pattern
> 
> 
> # aptitude upgrade
> Resolving dependencies...
> The following packages will be upgraded:
>   libass5
> 1 packages upgraded, 0 newly installed, 0 to remove and 29 not upgraded.
> Need to get 0 B/90.3 kB of archives. After unpacking 5,120 B will be used.
> Do you want to continue? [Y/n/?]
> Reading changelogs... Done
> (Reading database ... 285271 files and directories currently installed.)
> Preparing to unpack .../libass5_0.13.4-1_amd64.deb ...
> Unpacking libass5:amd64 (0.13.4-1) over (0.13.2-1) ...
> Setting up libass5:amd64 (0.13.4-1) ...
> Processing triggers for libc-bin (2.24-5) ...
> 
> $ mpv
> mpv: symbol lookup error: /usr/lib/x86_64-linux-gnu/libass.so.5: undefined
> symbol: FT_Outline_EmboldenXY

Please let us know the output of ldd -r /usr/lib/x86_64-linux-gnu/libass.so.5
and your version of libfreetype6.

Cheers

> 
> The same error with 0.13.3-1 version of libass5
> 
> Best regards,
> Dmitri
> 
> 
> 
> -- System Information:
> Debian Release: stretch/sid
>   APT prefers oldoldstable
>   APT policy: (500, 'oldoldstable'), (500, 'unstable'), (500, 'testing'),
> (1,
> 'experimental')
> Architecture: amd64 (x86_64)
> Foreign Architectures: i386
> 
> Kernel: Linux 4.8.0-5.1-liquorix-amd64 (SMP w/4 CPU cores; PREEMPT)
> Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> Init: systemd (via /run/systemd/system)
> 
> Versions of packages mpv depends on:
> ii  libasound2  1.1.2-1
> ii  libass5 0.13.4-1
> ii  libavcodec577:3.1.5-1
> ii  libavdevice57   7:3.1.5-1
> ii  libavfilter67:3.1.5-1
> ii  libavformat57   7:3.1.5-1
> ii  libavutil55 7:3.1.5-1
> ii  libbluray1  1:0.9.3-2
> ii  libc6   2.24-5
> ii  libcdio-cdda1   0.83-4.2+b1
> ii  libcdio-paranoia1   0.83-4.2+b1
> ii  libcdio13   0.83-4.2+b1
> ii  libdrm2 2.4.71-1
> ii  libdvdnav4  5.0.3-2
> ii  libdvdread4 5.0.3-2
> ii  libegl1-mesa [libegl1-x11]  13.0.0~rc2-1
> ii  libenca01.19-1
> ii  libgbm1 13.0.0~rc2-1
> ii  libgl1-mesa-glx [libgl1]13.0.0~rc2-1
> ii  libguess1   1.2-1.1
> ii  libjack-jackd2-0 [libjack-0.116]
> 1.9.10+20150825git1ed50c92~dfsg-3
> ii  libjpeg62-turbo 1:1.5.1-2
> ii  liblcms2-2  2.7-1
> ii  liblua5.2-0 5.2.4-1.1+b1
> ii  libpulse0   9.0-4
> ii  librubberband2  1.8.1-6+b1
> ii  libsdl2-2.0-0   2.0.4+dfsg2-1
> ii  libsmbclient2:4.5.0+dfsg-1
> ii  libsndio6.1 1.1.0-2
> ii  libswresample2  7:3.1.5-1
> ii  libswscale4 7:3.1.5-1
> ii  libv4l-01.10.1-1
> ii  libva-drm1  1.7.2-1
> ii  libva-wayland1  1.7.2-1
> ii  libva-x11-1 1.7.2-1
> ii  libva1  1.7.2-1
> ii  libvdpau1   1.1.1-5
> ii  libwayland-client0  1.11.94-1
> ii  libwayland-cursor0 

Processed: Re: Bug#842522: mpv: Symbol lookup error in libass.so.5

2016-10-30 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + moreinfo
Bug #842522 [mpv] mpv: Symbol lookup error in libass.so.5
Added tag(s) moreinfo.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers