easytag 2.4.3-4 MIGRATED to testing

2018-03-29 Thread Debian testing watch
FYI: The status of the easytag source package
in Debian's testing distribution has changed.

  Previous version: 2.4.3-3
  Current version:  2.4.3-4

-- 
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


[bts-link] source package src:soundconverter

2018-03-29 Thread bts-link-upstream
#
# bts-link upstream status pull for source package src:soundconverter
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user bts-link-upstr...@lists.alioth.debian.org

# remote status report for #886046 (http://bugs.debian.org/886046)
# Bug title: soundconverter: Depends on gconf
#  * https://bugs.launchpad.net/bugs/1740830
#  * remote status changed: Confirmed -> Fix-Released
#  * closed upstream
tags 886046 + fixed-upstream
usertags 886046 - status-Confirmed
usertags 886046 + status-Fix-Released

thanks

___
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: [bts-link] source package src:soundconverter

2018-03-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #
> # bts-link upstream status pull for source package src:soundconverter
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user bts-link-upstr...@lists.alioth.debian.org
Setting user to bts-link-upstr...@lists.alioth.debian.org (was 
bts-link-de...@lists.alioth.debian.org).
> # remote status report for #886046 (http://bugs.debian.org/886046)
> # Bug title: soundconverter: Depends on gconf
> #  * https://bugs.launchpad.net/bugs/1740830
> #  * remote status changed: Confirmed -> Fix-Released
> #  * closed upstream
> tags 886046 + fixed-upstream
Bug #886046 [src:soundconverter] soundconverter: Depends on gconf
Added tag(s) fixed-upstream.
> usertags 886046 - status-Confirmed
Usertags were: status-Confirmed.
Usertags are now: .
> usertags 886046 + status-Fix-Released
There were no usertags set.
Usertags are now: status-Fix-Released.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
886046: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886046
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#894386: libinstpatch: memory corruption in file IpatchSF2Reader.c

2018-03-29 Thread Joël Krähemann
Source: libinstpatch
Severity: normal

Dear Maintainer,

The file IpatchSF2Reader.c has seen in the upstream code base some fixes
of potential memory corruption. This can lead to undefined behaviour.

I provide a patch with the specific changes, fixing the issue.

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

Kernel: Linux 4.15.0-2-amd64 (SMP w/24 CPU cores)
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)
LSM: AppArmor: enabled
--- libinstpatch-1.0.0/libinstpatch/IpatchSF2Reader.c   2010-10-25 
12:46:26.0 -0400
+++ libinstpatch-1.0.0.orig/libinstpatch/IpatchSF2Reader.c  2018-03-29 
11:57:52.433939326 -0400
@@ -647,13 +647,13 @@
   if (!ipatch_file_read (riff->handle, bag_table, chunk->size, err))
 return (FALSE);   /* bag_table will be freed by finalize() */
 
-  pgenndx = IPATCH_FILE_SWAP16 (riff->handle, _table[0]);
-  pmodndx = IPATCH_FILE_SWAP16 (riff->handle, _table[1]);
+  pgenndx = IPATCH_FILE_SWAP16 (riff->handle->file, _table[0]);
+  pmodndx = IPATCH_FILE_SWAP16 (riff->handle->file, _table[1]);
 
   for (i=0; i < reader->pbag_count; i++)
 {
-  genndx = IPATCH_FILE_SWAP16 (riff->handle, _table[(i+1)*2]);
-  modndx = IPATCH_FILE_SWAP16 (riff->handle, _table[(i+1)*2+1]);
+  genndx = IPATCH_FILE_SWAP16 (riff->handle->file, _table[(i+1)*2]);
+  modndx = IPATCH_FILE_SWAP16 (riff->handle->file, _table[(i+1)*2+1]);
 
   if (genndx < pgenndx)
{
@@ -973,13 +973,13 @@
   if (!ipatch_file_read (riff->handle, bag_table, chunk->size, err))
 return (FALSE);   /* bag_table will be freed by finalize() */
 
-  pgenndx = IPATCH_FILE_SWAP16 (riff->handle, _table[0]);
-  pmodndx = IPATCH_FILE_SWAP16 (riff->handle, _table[1]);
+  pgenndx = IPATCH_FILE_SWAP16 (riff->handle->file, _table[0]);
+  pmodndx = IPATCH_FILE_SWAP16 (riff->handle->file, _table[1]);
 
   for (i=0; i < reader->ibag_count; i++)
 {
-  genndx = IPATCH_FILE_SWAP16 (riff->handle, _table[(i+1)*2]);
-  modndx = IPATCH_FILE_SWAP16 (riff->handle, _table[(i+1)*2+1]);
+  genndx = IPATCH_FILE_SWAP16 (riff->handle->file, _table[(i+1)*2]);
+  modndx = IPATCH_FILE_SWAP16 (riff->handle->file, _table[(i+1)*2+1]);
 
   if (genndx < pgenndx)
{
___
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#894373: blender: Assertion Non-finite sum in path_radiance_clamp_and_sum failed

2018-03-29 Thread Lars Schimmer
Package: blender
Version: 2.79.a+dfsg0-2
Severity: normal

Dear Maintainer,


Blender dies with error: blender:
/build/blender-AiaOIi/blender-2.79.a+dfsg0/intern/cycles/kernel/../kernel/kernel_accumulate.h:514:
ccl::float3 ccl::path_radiance_clamp_and_sum(ccl::KernelGlobals*,
ccl::PathRadiance*): Assertion `!"Non-finite sum in
path_radiance_clamp_and_sum!"' failed.

zsh: abort  blender -b -y Glass\ Tris\ VR\ 2\ anim.blend -noaudio
-nojoystick -o render_

Upstream 2.79b from blender.org does work without that problem on the
same machine.

If needed I can supply the .blend file (90MB)

-- System Information:
Debian Release: 9.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (450, 'stable'), (400, 'testing'), (300, 
'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.14.0-0.bpo.3-amd64 (SMP w/32 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages blender depends on:
ii  blender-data  2.79.a+dfsg0-2
ii  fonts-dejavu  2.37-1
ii  libavcodec57  7:3.4.2-1+b1
ii  libavdevice57 7:3.4.2-1+b1
ii  libavformat57 7:3.4.2-1+b1
ii  libavutil55   7:3.4.2-1+b1
ii  libboost-atomic1.62.0 1.62.0+dfsg-4
ii  libboost-chrono1.62.0 1.62.0+dfsg-4
ii  libboost-date-time1.62.0  1.62.0+dfsg-4
ii  libboost-filesystem1.62.0 1.62.0+dfsg-4
ii  libboost-iostreams1.62.0  1.62.0+dfsg-4
ii  libboost-locale1.62.0 1.62.0+dfsg-4
ii  libboost-regex1.62.0  1.62.0+dfsg-4
ii  libboost-system1.62.0 1.62.0+dfsg-4
ii  libboost-thread1.62.0 1.62.0+dfsg-4
ii  libc6 2.27-2
ii  libfftw3-double3  3.3.5-3
ii  libfontconfig12.12.6-0.1
ii  libfreetype6  2.6.3-3.2
ii  libgcc1   1:8-20180312-2
ii  libgl11.0.0-2
ii  libglew2.02.0.0-5
ii  libglu1-mesa [libglu1]9.0.0-2.1
ii  libgomp1  8-20180312-2
ii  libilmbase23  2.2.1-2
ii  libjack-jackd2-0 [libjack-0.125]  1.9.10+20150825git1ed50c92~dfsg-5
ii  libjemalloc1  3.6.0-9.1
ii  libjpeg62-turbo   1:1.5.1-2
ii  libopenal11:1.17.2-4+b2
ii  libopencolorio1v5 1.1.0~dfsg0-1
ii  libopenexr23  2.2.1-4
ii  libopenimageio1.8 1.8.9~dfsg0-1+b1
ii  libopenjp2-7  2.1.2-1.1+deb9u2
ii  libopenvdb5.0 5.0.0-1+b2
ii  libpcre3  2:8.39-3
ii  libpng16-16   1.6.28-1
ii  libpython3.6  3.6.5~rc1-1
ii  libsndfile1   1.0.27-3
ii  libspnav0 0.2.3-1
ii  libstdc++68-20180312-2
ii  libswscale4   7:3.4.2-1+b1
ii  libtbb2   4.3~20150611-2
ii  libtiff5  4.0.8-2+deb9u2
ii  libx11-6  2:1.6.4-3
ii  libxfixes31:5.0.3-1
ii  libxi62:1.7.9-1
ii  libxml2   2.9.4+dfsg1-2.2+deb9u2
ii  libxxf86vm1   1:1.1.4-1+b2
ii  python3   3.5.3-1
ii  zlib1g1:1.2.8.dfsg-5

blender recommends no packages.

blender 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


Re: jack-keyboard

2018-03-29 Thread Ross Gammon
Hi Markus,

Thanks for taking an interest in jack-keyboard, and its status in
Debian. I am cc'ing you in case you are not subscribed to the list.

Unfortunately, messages to the list have a habit of being forgotten about.

I would recommend submitting a "wishlist" bug to the Debian Bug Tracker
against the jack-keyboard package, with this information, and requesting
a new version with your features. The reportbug tool will help with
this, but there is more information here:
https://www.debian.org/Bugs/Reporting

Will you be willing to maintain your fork long-term in case any new bugs
arise that need fixing? Answering this question on the bug too is a good
idea.

Regards,

Ross

On 26/03/18 11:08, Markus Schmidt wrote:
> Dear maintainers,
> 
> I needed some features in jack-keyboard but all projects seem to be
> abandoned, so I cloned the most recent one and did a couple of changes:
> 
>  New keyboard widget design utilizing Cairo
>  Display pressed keys
>  Display velocity
>  New controller "modulation"
>  New controller "pitch bend"
>  New panic button
>  New layout
>  New dark GTK style
>  New icon
>  use autoconfig
> 
> https://github.com/boomshop/jack-keyboard
> 
> Probably you're interested in a new version. If so I would update the
> version number to e.g. 2.8.0.
> 
> Best
> Markus
> 
> 
> 
> ___
> pkg-multimedia-maintainers mailing list
> pkg-multimedia-maintainers@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
> 



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

New Arrival Black Tigers

2018-03-29 Thread Bonesca - Jona
 
[
]( http://r.newsletter.bonescamail.nl/track/click/yc44xver1aoatrd ) 
NEW ARRIVAL 5 APRIL FROM BANGLADESH

Topquality Black Tiger Shrimps

Jona Brand!!

26/30 Peeled & Deveined  
10 x 1000 grs - 750 grs Net Weight

1 box € 8,88
10 box € 8,48 
1 palet € 7,88

3 palets € 7,48 per kilo
























   [ Click here for all our offers ]( 
http://r.newsletter.bonescamail.nl/track/click/yc44xvertqoatrd )     

Bonesca Import en Export BV
Schulpengat 9
8321 WC URK
The Netherlands
M: i...@bonesca.nl
W: [ www.bonesca.nl ]( 
http://r.newsletter.bonescamail.nl/track/click/yc44xvesm6oatrd )
[  ]( http://r.newsletter.bonescamail.nl/track/click/yc44xvetemoatrd )
[  ]( http://r.newsletter.bonescamail.nl/track/click/yc44xveu72oatrd )  
 
© 2018 Bonesca Import en Export BV  If you wish to unsubscribe from our 
newsletter, click http://r.newsletter.bonescamail.nl/8l118guouoatrg.html

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