Bug#853437: guitarix: ftbfs with GCC-7

2017-08-11 Thread Hermann Meyer

Hi


A new release (0.35.6) is out to fix this issue.

https://sourceforge.net/projects/guitarix/

regards

hermann

___
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#870622: ffmpeg: autopkgtest SIGBUS on armhf with binutils 2.29

2017-08-11 Thread Jiong Wang

(Just for the record to avoid misleading)

I think the .eqv should fully work, but need to correct the reason for why.

It is not because it turned the new symbol into non-function type, but 
because .eqv
is expect to always evaulate the snapshot value of the equaled 
expression at each
place the new symbol is used, you don't know it's final value and the 
associated
section, therefore it is associated with undefined section until the 
final stage of
assembling.  So, when doing ADR instruction assembling, at that stage, 
the new
symbol is still without definition section assigned, therefore is able 
to skip the LSB

setting which only happens for thumb function symbol with defined section.

binutils-gdb/gas/config/tc-arm.c: do_t_adr
...

  && S_IS_DEFINED (inst.reloc.exp.X_add_symbol)
  && THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
inst.reloc.exp.X_add_number += 1;

Use .equ, the magic disappear.

Regards,
Jiong

On 04/08/17 14:58, Jiong Wang wrote:


Change

  "adreq lr,X(ff_h264_idct_add_neon) +CONFIG_THUMB"

Into:

.eqv ff_h264_idct_add_neon_without_func_type, X(ff_h264_idct_add_neon)
adreq lr,ff_h264_idct_add_neon_without_func_type +CONFIG_THUMB

might be a solution.  The idea is we use .eqv to remove the function 
attribute, so the assembler won't set LSB in any case.



On 04/08/17 12:39, Jiong Wang wrote:

Hi,

  This issue is caused by a recent change in ARM assembler included 
since Binutils 2.29.


  The details of that change can be found at 
https://sourceware.org/bugzilla/show_bug.cgi?id=21458


  The semantics of ADR has changed.  In general, the address 
generated by ADR will guarantee the LSB be set if it's a thumb 
function address.


   I noticed h264idct_neon.S is using something like:

adreq lr,X(ff_h264_idct_add_neon) +CONFIG_THUMB

   As ADR now will set the LSB automatically, you don't need 
CONFIG_THUMB any more.


   I think h264idct_neon.S needs to be updated, and the modification 
should make sure it works with both old Binutils and the new one.


Regards,
Jiong





___
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#871649: lv2-dev: abuse of non portable pointer of uint8_t type

2017-08-11 Thread Jaromír Mikeš
2017-08-10 16:23 GMT+02:00 Joël Krähemann :

> Hi James,
>
> It is common that you use for storing uint8_t an entire word.
> The use of a uint8_t pointer confused me as you are pointing
> to a struct.
>
> Bests,
> Joël
>
>
> On Thu, Aug 10, 2017 at 4:10 PM, James Cowgill 
> wrote:
> > Hi,
> >
> > On 10/08/17 08:31, Joël Krähemann wrote:
> >> Package: lv2-dev
> >> Version: 1.14.0~dfsg1-1
> >> Severity: important
> >>
> >> Dear Maintainer,
> >>
> >> The following header makes use of smallest possible pointer in
> LV2_Event_Buffer struct's data field.
> >>
> >> lv2/lv2plug.in/ns/ext/event/event.h
> >>
> >> Please change it to biggest possible pointer. It should be definitely
> void* type because the memory
> >> pointed by data shall contain another struct LV2_Event.
> >>
> >> This describes an integer overflow. There shouldn't be any overflow.
> >
> > I'm afraid I don't see what the problem is here, or where the integer
> > overflow is. The data field is casted to an appropriate pointer type
> > whenever it is used and doing that is portable if you're careful.
>
>
Hi Joel,

You still think it is a bug?
Did you contacted upstream author about this issue already?

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#871649: lv2-dev: abuse of non portable pointer of uint8_t type

2017-08-11 Thread Joël Krähemann
Hi

For sure you can cast any pointer. But feels somehow wrong. The
opinion was the specs
are always correct.

Bests,
Joël


On Fri, Aug 11, 2017 at 8:12 PM, Jaromír Mikeš  wrote:
>
>
> 2017-08-10 16:23 GMT+02:00 Joël Krähemann :
>>
>> Hi James,
>>
>> It is common that you use for storing uint8_t an entire word.
>> The use of a uint8_t pointer confused me as you are pointing
>> to a struct.
>>
>> Bests,
>> Joël
>>
>>
>> On Thu, Aug 10, 2017 at 4:10 PM, James Cowgill 
>> wrote:
>> > Hi,
>> >
>> > On 10/08/17 08:31, Joël Krähemann wrote:
>> >> Package: lv2-dev
>> >> Version: 1.14.0~dfsg1-1
>> >> Severity: important
>> >>
>> >> Dear Maintainer,
>> >>
>> >> The following header makes use of smallest possible pointer in
>> >> LV2_Event_Buffer struct's data field.
>> >>
>> >> lv2/lv2plug.in/ns/ext/event/event.h
>> >>
>> >> Please change it to biggest possible pointer. It should be definitely
>> >> void* type because the memory
>> >> pointed by data shall contain another struct LV2_Event.
>> >>
>> >> This describes an integer overflow. There shouldn't be any overflow.
>> >
>> > I'm afraid I don't see what the problem is here, or where the integer
>> > overflow is. The data field is casted to an appropriate pointer type
>> > whenever it is used and doing that is portable if you're careful.
>>
>
> Hi Joel,
>
> You still think it is a bug?
> Did you contacted upstream author about this issue already?
>
> 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#871649: lv2-dev: abuse of non portable pointer of uint8_t type

2017-08-11 Thread Jaromír Mikeš
2017-08-11 20:20 GMT+02:00 Joël Krähemann :

> Hi
>
> For sure you can cast any pointer. But feels somehow wrong. The
> opinion was the specs
> are always correct.
>
> Bests,
> Joël
>
>
> On Fri, Aug 11, 2017 at 8:12 PM, Jaromír Mikeš 
> wrote:
> >
> >
> > 2017-08-10 16:23 GMT+02:00 Joël Krähemann :
> >>
> >> Hi James,
> >>
> >> It is common that you use for storing uint8_t an entire word.
> >> The use of a uint8_t pointer confused me as you are pointing
> >> to a struct.
> >>
> >> Bests,
> >> Joël
> >>
> >>
> >> On Thu, Aug 10, 2017 at 4:10 PM, James Cowgill 
> >> wrote:
> >> > Hi,
> >> >
> >> > On 10/08/17 08:31, Joël Krähemann wrote:
> >> >> Package: lv2-dev
> >> >> Version: 1.14.0~dfsg1-1
> >> >> Severity: important
> >> >>
> >> >> Dear Maintainer,
> >> >>
> >> >> The following header makes use of smallest possible pointer in
> >> >> LV2_Event_Buffer struct's data field.
> >> >>
> >> >> lv2/lv2plug.in/ns/ext/event/event.h
> >> >>
> >> >> Please change it to biggest possible pointer. It should be definitely
> >> >> void* type because the memory
> >> >> pointed by data shall contain another struct LV2_Event.
> >> >>
> >> >> This describes an integer overflow. There shouldn't be any overflow.
> >> >
> >> > I'm afraid I don't see what the problem is here, or where the integer
> >> > overflow is. The data field is casted to an appropriate pointer type
> >> > whenever it is used and doing that is portable if you're careful.
> >>
> >
> > Hi Joel,
> >
> > You still think it is a bug?
> > Did you contacted upstream author about this issue already?
> >
> > best regards
> >
> > mira
> >
>

@ Joel as you didn't my second question I'm assuming you didn't contacted
upstream author yet.

Hi David,

can you please comment on this bug which we have opened in debian against
lv2-dev package?
I am not sure what to do with it.

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#871649: lv2-dev: abuse of non portable pointer of uint8_t type

2017-08-11 Thread Robin Gareus
Note that the LV2 event extension was deprecated years ago
and the last plugins which were using it were /killed/ in 2014.

http://lists.lv2plug.in/pipermail/devel-lv2plug.in/2014-January/000642.html


As for the bug report itself, changing plugin API specifications
post-factum is never a good idea. So uint8_t it is, besides the
documentation in event.h makes it clear:

/**
The contents of the event buffer. This may or may not reside in the
same block of memory as this header, plugins must not assume either.
The host guarantees this points to at least capacity bytes of allocated
memory (though only size bytes of that are valid events).
*/
uint8_t* data;


not a bug.

On 08/11/2017 08:20 PM, Joël Krähemann wrote:
> Hi
> 
> For sure you can cast any pointer. But feels somehow wrong. The
> opinion was the specs
> are always correct.
> 
> Bests,
> Joël
> 

___
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#871649: lv2-dev: abuse of non portable pointer of uint8_t type

2017-08-11 Thread Joël Krähemann
Hi

Might be just a programming error. But it is important that you don't point
uint8_t pointer to a struct.

Might be some language basics missing?

It is the same for atoms. Just use void pointers, please.

Bests,
Joël


On Fri, Aug 11, 2017 at 8:52 PM, Robin Gareus  wrote:
> Note that the LV2 event extension was deprecated years ago
> and the last plugins which were using it were /killed/ in 2014.
>
> http://lists.lv2plug.in/pipermail/devel-lv2plug.in/2014-January/000642.html
>
>
> As for the bug report itself, changing plugin API specifications
> post-factum is never a good idea. So uint8_t it is, besides the
> documentation in event.h makes it clear:
>
> /**
> The contents of the event buffer. This may or may not reside in the
> same block of memory as this header, plugins must not assume either.
> The host guarantees this points to at least capacity bytes of allocated
> memory (though only size bytes of that are valid events).
> */
> uint8_t* data;
>
>
> not a bug.
>
> On 08/11/2017 08:20 PM, Joël Krähemann wrote:
>> Hi
>>
>> For sure you can cast any pointer. But feels somehow wrong. The
>> opinion was the specs
>> are always correct.
>>
>> Bests,
>> Joël
>>
>
> ___
> pkg-multimedia-maintainers mailing list
> pkg-multimedia-maintainers@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

___
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#871649: lv2-dev: abuse of non portable pointer of uint8_t type

2017-08-11 Thread Joël Krähemann
Hi

Code like this might destabilize the operating system and compromise debian.
There is a good reason why glib-2.0 uses void pointers.

Bests,
Joël


On Fri, Aug 11, 2017 at 9:23 PM, Joël Krähemann  wrote:
> Hi
>
> Might be just a programming error. But it is important that you don't point
> uint8_t pointer to a struct.
>
> Might be some language basics missing?
>
> It is the same for atoms. Just use void pointers, please.
>
> Bests,
> Joël
>
>
> On Fri, Aug 11, 2017 at 8:52 PM, Robin Gareus  wrote:
>> Note that the LV2 event extension was deprecated years ago
>> and the last plugins which were using it were /killed/ in 2014.
>>
>> http://lists.lv2plug.in/pipermail/devel-lv2plug.in/2014-January/000642.html
>>
>>
>> As for the bug report itself, changing plugin API specifications
>> post-factum is never a good idea. So uint8_t it is, besides the
>> documentation in event.h makes it clear:
>>
>> /**
>> The contents of the event buffer. This may or may not reside in the
>> same block of memory as this header, plugins must not assume either.
>> The host guarantees this points to at least capacity bytes of allocated
>> memory (though only size bytes of that are valid events).
>> */
>> uint8_t* data;
>>
>>
>> not a bug.
>>
>> On 08/11/2017 08:20 PM, Joël Krähemann wrote:
>>> Hi
>>>
>>> For sure you can cast any pointer. But feels somehow wrong. The
>>> opinion was the specs
>>> are always correct.
>>>
>>> Bests,
>>> Joël
>>>
>>
>> ___
>> pkg-multimedia-maintainers mailing list
>> pkg-multimedia-maintainers@lists.alioth.debian.org
>> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

___
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#871814: csound-manual FTBFS: python: Command not found

2017-08-11 Thread Adrian Bunk
Source: csound-manual
Version: 1:6.09.0~dfsg-1
Severity: serious

https://buildd.debian.org/status/fetch.php?pkg=csound-manual&arch=all&ver=1%3A6.09.0~dfsg-1&stamp=1502411845&raw=0

...
dh_auto_build
make -j4
make[2]: Entering directory '/<>'
[ -d "/usr/share/xml/docbook/stylesheet/nwalsh/" ] || (  \
 echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets 
installation directory" ; \
 false )
sed -e 's|@xsl_base_path@|/usr/share/xml/docbook/stylesheet/nwalsh/|' 
xsl/customXHTMLchunk.xsl.in > xsl/customXHTMLchunk.xsl
mkdir -p examples-xml
python csd2docbook.py
make[2]: python: Command not found
Makefile:702: recipe for target 'examples-xml/stamp' failed
make[2]: *** [examples-xml/stamp] Error 12

___
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#871649: marked as done (lv2-dev: abuse of non portable pointer of uint8_t type)

2017-08-11 Thread Debian Bug Tracking System
Your message dated Fri, 11 Aug 2017 23:32:04 +0200
with message-id <20170811213204.4ulh5c6g3zrqj...@ramacher.at>
and subject line Re: Bug#871649: lv2-dev: abuse of non portable pointer of 
uint8_t type
has caused the Debian Bug report #871649,
regarding lv2-dev: abuse of non portable pointer of uint8_t type
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.)


-- 
871649: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=871649
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: lv2-dev
Version: 1.14.0~dfsg1-1
Severity: important

Dear Maintainer,

The following header makes use of smallest possible pointer in LV2_Event_Buffer 
struct's data field.

lv2/lv2plug.in/ns/ext/event/event.h

Please change it to biggest possible pointer. It should be definitely void* 
type because the memory
pointed by data shall contain another struct LV2_Event.

This describes an integer overflow. There shouldn't be any overflow.

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

Kernel: Linux 4.9.0-1-rt-amd64 (SMP w/24 CPU cores; PREEMPT)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE=C.UTF-8 
(charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- no debconf information
--- End Message ---
--- Begin Message ---
On 2017-08-10 14:31:56, Joël Krähemann wrote:
> Package: lv2-dev
> Version: 1.14.0~dfsg1-1
> Severity: important
> 
> Dear Maintainer,
> 
> The following header makes use of smallest possible pointer in 
> LV2_Event_Buffer struct's data field.
> 
> lv2/lv2plug.in/ns/ext/event/event.h
> 
> Please change it to biggest possible pointer. It should be definitely void* 
> type because the memory
> pointed by data shall contain another struct LV2_Event.
> 
> This describes an integer overflow. There shouldn't be any overflow.

I'm closing this bug, because it just isn't a bug.

Regards
-- 
Sebastian Ramacher


signature.asc
Description: 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

Processed: Bug#866641 marked as pending

2017-08-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 866641 pending
Bug #866641 [guitarix] guitarix: depends on libwebkitgtk-1.0-0 which is 
deprecated
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
866641: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=866641
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


Processed: Bug#853437 marked as pending

2017-08-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 853437 pending
Bug #853437 [src:guitarix] guitarix: ftbfs with GCC-7
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
853437: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=853437
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


Processed: Bug#871814 marked as pending

2017-08-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 871814 pending
Bug #871814 [src:csound-manual] csound-manual FTBFS: python: Command not found
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
871814: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=871814
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


Processing of csound-manual_6.09.0~dfsg-2_source.changes

2017-08-11 Thread Debian FTP Masters
csound-manual_6.09.0~dfsg-2_source.changes uploaded successfully to localhost
along with the files:
  csound-manual_6.09.0~dfsg-2.dsc
  csound-manual_6.09.0~dfsg-2.debian.tar.xz
  csound-manual_6.09.0~dfsg-2_source.buildinfo

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


Processing of guitarix_0.35.6-1_source.changes

2017-08-11 Thread Debian FTP Masters
guitarix_0.35.6-1_source.changes uploaded successfully to localhost
along with the files:
  guitarix_0.35.6-1.dsc
  guitarix_0.35.6.orig.tar.xz
  guitarix_0.35.6-1.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


csound-manual_6.09.0~dfsg-2_source.changes REJECTED

2017-08-11 Thread Debian FTP Masters


Source-only uploads to NEW are not allowed.

binary:csound-doc is NEW.

===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


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


guitarix_0.35.6-1_source.changes ACCEPTED into unstable

2017-08-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 12 Aug 2017 01:43:19 +0200
Source: guitarix
Binary: guitarix guitarix-common guitarix-ladspa guitarix-lv2 guitarix-doc 
libgxw0 libgxw-dev libgxwmm0 libgxwmm-dev gxw-glade
Architecture: source
Version: 0.35.6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 guitarix   - Rock guitar amplifier for Jack
 guitarix-common - Guitarix - Common files
 guitarix-doc - Guitarix - Development documentation
 guitarix-ladspa - Guitarix - ladspa plugins
 guitarix-lv2 - Guitarix - LV2 plugins
 gxw-glade  - Guitarix - GTK+ library Glade support
 libgxw-dev - Guitarix - GTK+ library (development files)
 libgxw0- Guitarix - GTK+ library
 libgxwmm-dev - Guitarix - GTK+ C++ widget library (development files)
 libgxwmm0  - Guitarix - GTK+ C++ widget library
Closes: 853437 866641
Changes:
 guitarix (0.35.6-1) unstable; urgency=medium
 .
   * Team upload.
   * Upload to unstable.
   * New upstream release.
 - Drop dependency on WebKit (Closes: #866641)
 - Fix build issues with GCC 7. (Closes: #853437)
   * debian/control:
 - Bump Priority to optional.
 - Bump Standards-Version.
Checksums-Sha1:
 fdf33c9190e0186c9eb13701b8ce7e51c4e0d9b2 2822 guitarix_0.35.6-1.dsc
 474179d8719163d85d327896368774b33f75d9c3 80169924 guitarix_0.35.6.orig.tar.xz
 02beed26013ab098ce4ab1ad3dfb0cabbae4537f 13076 guitarix_0.35.6-1.debian.tar.xz
Checksums-Sha256:
 848c930dc34b363649e95218dc8009c37749d8993b2c5cc4e455ecaa74017976 2822 
guitarix_0.35.6-1.dsc
 81589b6c1a59d0560472ff1054a7fe44fb64344428deacff387f1b09b775db39 80169924 
guitarix_0.35.6.orig.tar.xz
 4237c2cbeb47e25b779c85c122db11c32e0e710081bafbd5de2761e5375e8319 13076 
guitarix_0.35.6-1.debian.tar.xz
Files:
 a485b82976c685cf93c6139bf6add941 2822 sound optional guitarix_0.35.6-1.dsc
 d9856cd84d2e1de62adbbda9fada9570 80169924 sound optional 
guitarix_0.35.6.orig.tar.xz
 accd0d609f1295353bc1c5b2a5c57246 13076 sound optional 
guitarix_0.35.6-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAlmOQj0ACgkQafL8UW6n
GZPGuhAAw2bnCpuqZdFwA4wtLROqpWXotkc1to3qXbfyZR9oHc6DUNEB10YvSc7l
q5CQmaItYnqvzBsTvfNmTIZ2cNVgMDTvQmMo9WnGqf6d3zgltJMB/oA/lL2z1CT8
KB7NIwEn/8P+a//g2dDfYRA9BKfsoGGPi2YCwHV97X24xTo48NdIYnsY+cAc2WdP
imjVabu3RBhpIDjuHdc2/BHh3GntPlZDggq7RIehdLrMmcUttLHe8yBECa2yY7Qs
OKy22/8/MqP/RJ2xXqFXRQwIcKbs5Wp2BxTpKg4/G6GObk61DFQjt9YWMYjzR+Kz
fUYwqjkC9HRGhTcF+6crkrcoZCz/AHK0k+NUBt0kNXxlTJ64fEf+/8CW+imFhVGx
+yfGsdV4jvjcfPcxJskU0suCmWAb6WP9ZpvLr8qLTMbf0NjXo5rkBGGtsp8fieXG
Kl902LhSPPdPqFkkopNsCv8sqRlogRf7MNsVU8CM+4uzutUmLXJq2KoMx3Ek+z3v
ru652BEclwoCQo7etCxGvMA9bEOp5zpBDBIGbOX1tehhZSe52deO3p3r6dW/lz6P
X025vA/KqM/RE+XI4a68rOMeqkvhiZNxYjjzQwpEdMJ8Y5C/oT4qg4RQVE7Mr2Er
ZSNkl7XkohJlPGiOPVVlcby1VXNSKtGv40f5A6GQ9vBCwOQClUA=
=E0KI
-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#853437: marked as done (guitarix: ftbfs with GCC-7)

2017-08-11 Thread Debian Bug Tracking System
Your message dated Sat, 12 Aug 2017 00:19:33 +
with message-id 
and subject line Bug#853437: fixed in guitarix 0.35.6-1
has caused the Debian Bug report #853437,
regarding guitarix: ftbfs with GCC-7
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.)


-- 
853437: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=853437
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:guitarix
Version: 0.35.2-1
Severity: normal
Tags: sid buster
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-7

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-7/g++-7, but succeeds to build with gcc-6/g++-6. The
severity of this report may be raised before the buster release.
There is no need to fix this issue in time for the stretch release.

The full build log can be found at:
http://people.debian.org/~doko/logs/gcc7-20170126/guitarix_0.35.2-1_unstable_gcc7.log
The last lines of the build log are at the end of this report.

To build with GCC 7, either set CC=gcc-7 CXX=g++-7 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-7/porting_to.html

[...]
 from /usr/include/gtkmm-2.4/gtkmm.h:87,
 from ../src/LV2/gx_delay.lv2/gx_delay_gui.cpp:24:
/usr/include/glibmm-2.4/glibmm/variant.h:596:55: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
static V_CastTo cast_dynamic(const VariantBase& v) throw(std::bad_cast);
   ^
/usr/include/glibmm-2.4/glibmm/variant.h:643:1: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
 throw(std::bad_cast)
 ^
/usr/include/glibmm-2.4/glibmm/variant.h:899:1: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
 throw(std::bad_cast);
 ^
/usr/include/glibmm-2.4/glibmm/variant.h:1082:1: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
 throw(std::bad_cast);
 ^
/usr/include/glibmm-2.4/glibmm/variant.h:1139:1: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
 throw(std::bad_cast);
 ^
In file included from 
/usr/include/glibmm-2.4/glibmm/containerhandle_shared.h:24:0,
 from /usr/include/glibmm-2.4/glibmm/arrayhandle.h:23,
 from /usr/include/glibmm-2.4/glibmm.h:93,
 from /usr/include/gtkmm-2.4/gtkmm.h:87,
 from ../src/LV2/gx_delay.lv2/widget.h:25,
 from ../src/LV2/gx_delay.lv2/widget.cpp:21:
/usr/include/glibmm-2.4/glibmm/variant.h:596:55: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
static V_CastTo cast_dynamic(const VariantBase& v) throw(std::bad_cast);
   ^
/usr/include/glibmm-2.4/glibmm/variant.h:643:1: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
 throw(std::bad_cast)
 ^
/usr/include/glibmm-2.4/glibmm/variant.h:899:1: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
 throw(std::bad_cast);
 ^
/usr/include/glibmm-2.4/glibmm/variant.h:1082:1: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
 throw(std::bad_cast);
 ^
/usr/include/glibmm-2.4/glibmm/variant.h:1139:1: warning: dynamic exception 
specifications are deprecated in C++11; use 'noexcept' instead [-Wdeprecated]
 throw(std::bad_cast);
 ^
Waf: Leaving directory `/<>/build'
Build failed:
 -> task failed (err #1): 
{task: cxx gxamp.cpp -> gxamp_8.o}
 -> task failed (err #1): 
{task: cxx gxamp_stereo.cpp -> gxamp_stereo_13.o}
debian/rules:22: recipe for target 'override_dh_auto_build-arch' failed
make[1]: *** [override_dh_auto_build-arch] Error 1
make[1]: 

Bug#866641: marked as done (guitarix: depends on libwebkitgtk-1.0-0 which is deprecated)

2017-08-11 Thread Debian Bug Tracking System
Your message dated Sat, 12 Aug 2017 00:19:33 +
with message-id 
and subject line Bug#866641: fixed in guitarix 0.35.6-1
has caused the Debian Bug report #866641,
regarding guitarix: depends on libwebkitgtk-1.0-0 which is deprecated
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.)


-- 
866641: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=866641
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: guitarix
Severity: serious
Tags: sid buster
User: pkg-webkit-maintain...@lists.alioth.debian.org
Usertags: oldlibs libwebkitgtk-1.0-0 webkit1

Hi,

guitarix depends on libwebkitgtk-1.0-0, which is deprecated in
favor of libwebkit2gtk-4.0-37 (provided in Debian by webkit2gtk).
guitarix should be ported to the new webkitgtk version so we can
remove the old, unmaintained one.

Please try to do soon as we're going to try to remove the old webkitgtk soon.

I am filing this bug as "serious" since the old webkitgtk will not be
available in the next major stable release of Debian (codenamed
"buster").

If you have any question don't hesitate to ask.

On behalf of the Debian WebKit Maintainers,
Jeremy Bicha
--- End Message ---
--- Begin Message ---
Source: guitarix
Source-Version: 0.35.6-1

We believe that the bug you reported is fixed in the latest version of
guitarix, 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 866...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated guitarix package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 12 Aug 2017 01:43:19 +0200
Source: guitarix
Binary: guitarix guitarix-common guitarix-ladspa guitarix-lv2 guitarix-doc 
libgxw0 libgxw-dev libgxwmm0 libgxwmm-dev gxw-glade
Architecture: source
Version: 0.35.6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 guitarix   - Rock guitar amplifier for Jack
 guitarix-common - Guitarix - Common files
 guitarix-doc - Guitarix - Development documentation
 guitarix-ladspa - Guitarix - ladspa plugins
 guitarix-lv2 - Guitarix - LV2 plugins
 gxw-glade  - Guitarix - GTK+ library Glade support
 libgxw-dev - Guitarix - GTK+ library (development files)
 libgxw0- Guitarix - GTK+ library
 libgxwmm-dev - Guitarix - GTK+ C++ widget library (development files)
 libgxwmm0  - Guitarix - GTK+ C++ widget library
Closes: 853437 866641
Changes:
 guitarix (0.35.6-1) unstable; urgency=medium
 .
   * Team upload.
   * Upload to unstable.
   * New upstream release.
 - Drop dependency on WebKit (Closes: #866641)
 - Fix build issues with GCC 7. (Closes: #853437)
   * debian/control:
 - Bump Priority to optional.
 - Bump Standards-Version.
Checksums-Sha1:
 fdf33c9190e0186c9eb13701b8ce7e51c4e0d9b2 2822 guitarix_0.35.6-1.dsc
 474179d8719163d85d327896368774b33f75d9c3 80169924 guitarix_0.35.6.orig.tar.xz
 02beed26013ab098ce4ab1ad3dfb0cabbae4537f 13076 guitarix_0.35.6-1.debian.tar.xz
Checksums-Sha256:
 848c930dc34b363649e95218dc8009c37749d8993b2c5cc4e455ecaa74017976 2822 
guitarix_0.35.6-1.dsc
 81589b6c1a59d0560472ff1054a7fe44fb64344428deacff387f1b09b775db39 80169924 
guitarix_0.35.6.orig.tar.xz
 4237c2cbeb47e25b779c85c122db11c32e0e710081bafbd5de2761e5375e8319 13076 
guitarix_0.35.6-1.debian.tar.xz
Files:
 a485b82976c685cf93c6139bf6add941 2822 sound optional guitarix_0.35.6-1.dsc
 d9856cd84d2e1de62adbbda9fada9570 80169924 sound optional 
guitarix_0.35.6.orig.tar.xz
 accd0d609f1295353bc1c5b2a5c57246 13076 sound optional 
guitarix_0.35.6-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAlmOQj0ACgkQafL8UW6n
GZPGuhAAw2bnCpuqZdFwA4wtLROqpWXotkc1to3qXbfyZR9oHc6DUNEB10YvSc7l
q5CQmaItYnqvzBsTvfNmTIZ2cNVgMDTvQmMo9WnGqf6d3zgltJMB/oA/lL2z1CT8
KB7NIwEn/8P+a//g2dDfYRA9BKfsoGGPi2YCwHV97X24xTo48NdIYnsY+cAc2WdP
imjVabu3RBhpIDjuHdc2/BHh3GntPlZDggq7RIehdLrMmcUttLHe8yBECa2yY7Qs
OKy22/8/MqP/RJ2xXqFXRQwIcKbs5Wp2BxTpKg4/G6GObk61DFQjt9YWMYjzR+Kz
fUYwqjkC9HRGhTcF+6crkrcoZCz/AHK0k+NUBt0kNXxlTJ64fEf+/8CW+imFhVGx
+yfGsdV4jvjcfPcxJskU0suCmWAb6WP9ZpvLr8qLTMbf0NjXo5rkBGGtsp8fieXG
Kl902LhSPPdPqFkkopNsCv8sqRlogRf7M

libebml 1.3.4-2 MIGRATED to testing

2017-08-11 Thread Debian testing watch
FYI: The status of the libebml source package
in Debian's testing distribution has changed.

  Previous version: 1.3.4-1
  Current version:  1.3.4-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


mpg123 1.25.4-1 MIGRATED to testing

2017-08-11 Thread Debian testing watch
FYI: The status of the mpg123 source package
in Debian's testing distribution has changed.

  Previous version: 1.25.3-1
  Current version:  1.25.4-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


shine 3.1.1-1 MIGRATED to testing

2017-08-11 Thread Debian testing watch
FYI: The status of the shine source package
in Debian's testing distribution has changed.

  Previous version: 3.1.0-5
  Current version:  3.1.1-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