Bug#803803: marked as done (blender: FTBFS with FFmpeg 2.9)

2015-12-09 Thread Debian Bug Tracking System
Your message dated Thu, 10 Dec 2015 07:35:34 +
with message-id 
and subject line Bug#803803: fixed in blender 2.74+dfsg0-5
has caused the Debian Bug report #803803,
regarding blender: FTBFS with FFmpeg 2.9
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.)


-- 
803803: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803803
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: blender
Version: 2.74+dfsg0-4
Severity: important
Tags: patch
User: pkg-multimedia-maintainers@lists.alioth.debian.org
Usertags: ffmpeg2.9

Dear Maintainer,

your package fails to build with the upcoming ffmpeg 2.9.
This bug will become release-critical at some point when the
ffmpeg2.9 transition gets closer.

Attached is a patch replacing the deprecated functionality.
It also works with ffmpeg 2.8.
Please apply this patch and forward it upstream, if necessary.

These changes are non-trivial and should be runtime-tested.

Best regards,
Andreas

diff --git a/debian/control b/debian/control
index 93a843a..e23485b 100644
--- a/debian/control
+++ b/debian/control
@@ -12,6 +12,7 @@ Build-Depends: autotools-dev,
libavcodec-dev (>> 6:10),
libavdevice-dev,
libavformat-dev,
+   libavfilter-dev,
libboost-dev,
libboost-filesystem-dev,
libboost-locale-dev,
diff --git a/debian/patches/ffmpeg_2.9.patch b/debian/patches/ffmpeg_2.9.patch
new file mode 100644
index 000..0f1ff1c
--- /dev/null
+++ b/debian/patches/ffmpeg_2.9.patch
@@ -0,0 +1,668 @@
+Description: Replace deprecated FFmpeg API
+Author: Andreas Cadhalpun 
+Last-Update: <2015-11-02>
+
+--- blender-2.74+dfsg0.orig/CMakeLists.txt
 blender-2.74+dfsg0/CMakeLists.txt
+@@ -892,7 +892,7 @@ if(UNIX AND NOT APPLE)
+ 
+ 	if(WITH_CODEC_FFMPEG)
+ 		set(FFMPEG /usr CACHE PATH "FFMPEG Directory")
+-		set(FFMPEG_LIBRARIES avformat avcodec avutil avdevice swscale CACHE STRING "FFMPEG Libraries")
++		set(FFMPEG_LIBRARIES avformat avcodec avutil avdevice swscale avfilter CACHE STRING "FFMPEG Libraries")
+ 
+ 		mark_as_advanced(FFMPEG)
+ 
+--- blender-2.74+dfsg0.orig/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
 blender-2.74+dfsg0/intern/audaspace/ffmpeg/AUD_FFMPEGReader.cpp
+@@ -58,9 +58,9 @@ int AUD_FFMPEGReader::decode(AVPacket& p
+ 		got_frame = 0;
+ 
+ 		if(!frame)
+-			frame = avcodec_alloc_frame();
++			frame = av_frame_alloc();
+ 		else
+-			avcodec_get_frame_defaults(frame);
++			av_frame_unref(frame);
+ 
+ 		read_length = avcodec_decode_audio4(m_codecCtx, frame, &got_frame, &packet);
+ 		if(read_length < 0)
+--- blender-2.74+dfsg0.orig/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
 blender-2.74+dfsg0/intern/audaspace/ffmpeg/AUD_FFMPEGWriter.cpp
+@@ -202,7 +202,7 @@ AUD_FFMPEGWriter::AUD_FFMPEGWriter(std::
+ 			m_frame = av_frame_alloc();
+ 			if (!m_frame)
+ AUD_THROW(AUD_ERROR_FFMPEG, codec_error);
+-			avcodec_get_frame_defaults(m_frame);
++			av_frame_unref(m_frame);
+ 			m_frame->linesize[0]= m_input_size * samplesize;
+ 			m_frame->format = m_codecCtx->sample_fmt;
+ 			m_frame->nb_samples = m_input_size;
+--- blender-2.74+dfsg0.orig/source/blender/blenkernel/intern/writeffmpeg.c
 blender-2.74+dfsg0/source/blender/blenkernel/intern/writeffmpeg.c
+@@ -133,8 +133,8 @@ static int write_audio_frame(void)
+ 	audio_time += (double) audio_input_samples / (double) c->sample_rate;
+ 
+ #ifdef FFMPEG_HAVE_ENCODE_AUDIO2
+-	frame = avcodec_alloc_frame();
+-	avcodec_get_frame_defaults(frame);
++	frame = av_frame_alloc();
++	av_frame_unref(frame);
+ 	frame->pts = audio_time / av_q2d(c->time_base);
+ 	frame->nb_samples = audio_input_samples;
+ 	frame->format = c->sample_fmt;
+@@ -167,7 +167,7 @@ static int write_audio_frame(void)
+ 	}
+ 
+ 	if (!got_output) {
+-		avcodec_free_frame(&frame);
++		av_frame_free(&frame);
+ 		return 0;
+ 	}
+ #else
+@@ -197,7 +197,7 @@ static int write_audio_frame(void)
+ 		if (av_interleaved_write_frame(outfile, &pkt) != 0) {
+ 			fprintf(stderr, "Error writing audio packet!\n");
+ 			if (frame)
+-avcodec_free_frame(&frame);
++av_frame_free(&frame);
+ 			return -1;
+ 		}
+ 
+@@ -205,7 +205,7 @@ static int write_audio_frame(void)
+ 	}
+ 
+ 	if (frame)
+-		avcodec_free_frame(&frame);
++		av_frame_free(&frame);
+ 
+ 	return 0;
+ }
+@@ -219,7 +219,7 @@ static AVFrame *alloc_picture(int pix_fm
+ 	int size;
+ 	
+ 	/* allocate space for the struct */
+-	f = avcodec_alloc_frame();
++	f = av_frame_alloc();
+ 	if (!f) return NULL;
+ 	size = avpicture_get_size(pix_fmt, width, height);
+ 	/* allocate the actual picture 

blender_2.74+dfsg0-5_source.changes ACCEPTED into unstable

2015-12-09 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 09 Dec 2015 22:52:22 +0100
Source: blender
Binary: blender blender-data blender-dbg
Architecture: source
Version: 2.74+dfsg0-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Matteo F. Vescovi 
Description:
 blender- Very fast and versatile 3D modeller/renderer
 blender-data - Very fast and versatile 3D modeller/renderer - data package
 blender-dbg - Very fast and versatile 3D modeller/renderer - debug package
Closes: 803803
Changes:
 blender (2.74+dfsg0-5) unstable; urgency=medium
 .
   [ Alessio Treglia ]
   * Remove myself from the Uploaders field
 .
   [ Matteo F. Vescovi ]
   * debian/: drop netrender addon
   * debian/control: libavfilter-dev b-dep added
   * debian/patches/: patchset updated
 - 0008-ffmpeg_2.9.patch added (Closes: #803803)
   Thanks to Andreas Cadhalpun for the patch.
   * debian/menu: file dropped
Checksums-Sha1:
 68d66cbdfd71e04025506f076c97430fc49104da 2883 blender_2.74+dfsg0-5.dsc
 4530dea7748e0819e4310c508e52d186330f39a8 47380 
blender_2.74+dfsg0-5.debian.tar.xz
Checksums-Sha256:
 3f62e1873a5a5a7a85263c893dbf88686dbf39a0dcb99582208cac83d0e206e4 2883 
blender_2.74+dfsg0-5.dsc
 1aaa374bfeff0614c744aeb81fdaa19c35c15067950572e8de71634a6670a6bd 47380 
blender_2.74+dfsg0-5.debian.tar.xz
Files:
 aeb927c97ef5ca406e1f0900f0766bb6 2883 graphics optional 
blender_2.74+dfsg0-5.dsc
 e002f396cc6d507e3777e6ae5349fb11 47380 graphics optional 
blender_2.74+dfsg0-5.debian.tar.xz

-BEGIN PGP SIGNATURE-
Comment: Debian powered!

iQJ7BAEBCgBmBQJWaKLSXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRGM0REMDlGOERBODdEMURGNTA0NkM5OUIw
NjEyRjQ5NDRFQ0RDRDVBAAoJEAYS9JROzc1awDIP9jmkJX1XxG+KRUUAQHp3oWjw
MJ7nNhWbJukXoR8pWjVs6Lr0NFINCR7ev+WFNipItklBTChfJ8AFhWmQA99of3ut
aDSSfDTywxSKv5CK+p97PvKC7QI/mQvR6EIZPOAThCg6phS9wLNdZHiyHPBSnbrG
9TjXysWzBVzeYyUCjcGpC/dxk15rcxSZDKVkOEsi6mx4/4NWZgl5DuGF7+yaiRIG
c32CctG8fI/ZqCA7UG/bVGBgvNGrOAFl08yhhtpP8qK47U9lROtujYXQnIDMreY6
CMQa67ixGmGMSZ3nXabLotfeHM3AkZE5RVf4Ju2BfywqwQze2jTw/8hx2eYe1xyE
DKqxvu3OsTWWkj1TvFuExl0FAfJCjG2TzbQXmm0rxGF/xqW3YU7siXnYxxMeJ6+K
yNEO4vd8MpJsfnkFmsDryVLM053t5TN5Y6GuSVvUip+16XKYM7K+h5a520o2jRR7
fIPTx/+WfHlciCeVsBeGo1vlP4hKjX2WRrEPrRabrEbuWMUBoQ2vvoDFiWmgxDm2
bbTY4x2yRbnTiimhoXQbm7TNtJ7Kxqmdn70ip3/93H0z+qK6+XDA7eIPRdmGgv8r
KENE1CJc9vDcIBcOaH1k1AQYMf8kGTxJjM8gTFdE9AjrRp8pIWZdZY3E1ePc2XHQ
g0rmtjyGtRBByOVPTJA=
=gYZt
-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


Processing of blender_2.74+dfsg0-5_source.changes

2015-12-09 Thread Debian FTP Masters
blender_2.74+dfsg0-5_source.changes uploaded successfully to localhost
along with the files:
  blender_2.74+dfsg0-5.dsc
  blender_2.74+dfsg0-5.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.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


Bug#807528: vlc: after some time, clicks on the root window no longer work

2015-12-09 Thread Vincent Lefevre
On 2015-12-10 03:16:01 +0100, Vincent Lefevre wrote:
> After some time, clicks on the root window no longer work. VLC is
> the cause of this problem because as soon as I quit VLC, clicks on
> the root window work again.

I now remember that everytime this problem occurred, a USB mouse was
disconnected. So, this may be related.

Note: the machine is a laptop.
  * After disconnecting the USB mouse, the buttons of the touchpad
have no effect over the root window.
  * After disconnecting the USB mouse and reconnecting it[*], the
buttons of this USB mouse have no effect over the root window.
In both cases, the problem disappeared just after quitting VLC.

[*] This actually occurred due to a problem with a USB cable.
I had already mentioned the issue related to VLC here:
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=805168#27

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)

___
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#807528: vlc: after some time, clicks on the root window no longer work

2015-12-09 Thread Vincent Lefevre
Package: vlc
Version: 2.2.1-5+b1
Severity: normal

After some time, clicks on the root window no longer work. VLC is
the cause of this problem because as soon as I quit VLC, clicks on
the root window work again.

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

Kernel: Linux 4.2.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=POSIX, 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 vlc depends on:
ii  fonts-freefont-ttf  20120503-4
ii  libaa1  1.4p5-44
ii  libavcodec-ffmpeg56 7:2.8.3-1
ii  libavutil-ffmpeg54  7:2.8.3-1
ii  libc6   2.21-3
ii  libcaca00.99.beta19-2+b1
ii  libcairo2   1.14.4-1
ii  libegl1-mesa [libegl1-x11]  11.0.6-1
ii  libfreerdp-client1.11.1.0~git20140921.1.440916e+dfsg1-5+b1
ii  libfreerdp-core1.1  1.1.0~git20140921.1.440916e+dfsg1-5+b1
ii  libfreerdp-gdi1.1   1.1.0~git20140921.1.440916e+dfsg1-5+b1
ii  libfreetype62.6.1-0.1
ii  libfribidi0 0.19.7-1
ii  libgcc1 1:5.3.1-3
ii  libgl1-mesa-glx [libgl1]11.0.6-1
ii  libgles1-mesa [libgles1]11.0.6-1
ii  libgles2-mesa [libgles2]11.0.6-1
ii  libglib2.0-02.46.2-1
ii  libpulse0   7.1-2
ii  libqt5core5a5.5.1+dfsg-8
ii  libqt5gui5  5.5.1+dfsg-8
ii  libqt5widgets5  5.5.1+dfsg-8
ii  libqt5x11extras55.5.1-3
ii  librsvg2-2  2.40.12-1
ii  libsdl-image1.2 1.2.12-5+b5
ii  libsdl1.2debian 1.2.15-12
ii  libstdc++6  5.3.1-3
ii  libva-drm1  1.6.1-1
ii  libva-x11-1 1.6.1-1
ii  libva1  1.6.1-1
ii  libvlccore8 2.2.1-5+b1
ii  libvncclient1   0.9.10+dfsg-3
ii  libx11-62:1.6.3-1
ii  libxcb-composite0   1.11.1-1
ii  libxcb-keysyms1 0.4.0-1
ii  libxcb-randr0   1.11.1-1
ii  libxcb-shm0 1.11.1-1
ii  libxcb-xv0  1.11.1-1
ii  libxcb1 1.11.1-1
ii  libxext62:1.3.3-1
ii  libxi6  2:1.7.5-1
ii  libxinerama12:1.1.3-1+b1
ii  libxpm4 1:3.5.11-1+b1
ii  vlc-nox 2.2.1-5+b1
ii  zlib1g  1:1.2.8.dfsg-2+b1

Versions of packages vlc recommends:
ii  vlc-plugin-notify  2.2.1-5+b1
ii  vlc-plugin-samba   2.2.1-5+b1
ii  xdg-utils  1.1.1-1

vlc suggests no packages.

Versions of packages vlc-nox depends on:
ii  liba52-0.7.4   0.7.4-18
ii  libasound2 1.0.29-1
ii  libass50.13.1-1
ii  libavahi-client3   0.6.32~rc+dfsg-1
ii  libavahi-common3   0.6.32~rc+dfsg-1
ii  libavc1394-0   0.5.4-2
ii  libavcodec-ffmpeg567:2.8.3-1
ii  libavformat-ffmpeg56   7:2.8.3-1
ii  libavutil-ffmpeg54 7:2.8.3-1
ii  libbasicusageenvironment0  2014.01.13-1
ii  libbluray1 1:0.9.2-1
ii  libc6  2.21-3
ii  libcddb2   1.3.2-5
ii  libcdio13  0.83-4.2+b1
ii  libchromaprint01.2-1+b1
ii  libcrystalhd3  1:0.0~git20110715.fdd2f19-11+b1
ii  libdbus-1-31.10.6-1
ii  libdc1394-22   2.2.3-1
ii  libdca00.0.5-7
ii  libdirectfb-1.2-9  1.2.10.0-5.1
ii  libdvbpsi101.3.0-2
ii  libdvdnav4 5.0.3-1
ii  libdvdread45.0.3-1
ii  libebml4v5 1.3.3-1
ii  libfaad2   2.8.0~cvs20150510-1
ii  libflac8   1.3.1-4
ii  libfontconfig1 2.11.0-6.3
ii  libfreetype6   2.6.1-0.1
ii  libfribidi00.19.7-1
ii  libgcc11:5.3.1-3
ii  libgcrypt201.6.4-3
ii  libgnutls-deb0-28  3.3.18-1
ii  libgpg-error0  1.20-1
ii  libgroupsock1  2014.01.13-1
ii  libjpeg62-turbo1:1.4.1-2
ii  libkate1   0.4.1-5
ii  liblircclient0 0.9.0~pre1-1.2
ii  liblivemedia23 2014.01.13-1
ii  liblua5.2-05.2.4-1
ii  libmad00.15.1b-8
ii  libmatroska6v5 1.4.4-1
ii  libmodplug11:0.8.8.5-2
ii  libmpcdec6 2:0.1~r475-1
ii  libmpeg2-4 0.5.1-7
ii  libmtp91.1.10-2
ii  libncursesw5   6.0+20151024-2
ii  libogg01.3.2-1
ii  libopus0   1.1.1-1
ii  libpng12-0 1.2.54-1
ii  libpostproc-ffmpeg53   7:2.8.3-1
ii  libraw1394-11  2.1.1-2
ii  libresid-builder0c2a   2.1.

Bug#804678: marked as done (blender: Please switch from fonts-droid to fonts-noto)

2015-12-09 Thread Debian Bug Tracking System
Your message dated Wed, 09 Dec 2015 21:50:40 +
with message-id 
and subject line Bug#804678: fixed in blender 2.76.b+dfsg0-1
has caused the Debian Bug report #804678,
regarding blender: Please switch from fonts-droid to fonts-noto
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.)


-- 
804678: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=804678
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: blender
Severity: normal
User: pkg-fonts-de...@lists.alioth.debian.org
Usertags: droid-migration

Dear Maintainer,

Since Android upstream stopped shipping Droid fonts and its been
declared that Noto fonts will be superseding the Droid¹² we in
"Debian Fonts Task Force" team decided to drop fonts-droid package.

One of your package blender either
Depends/Recommends/Suggests/Build-Depends on fonts-droid. I kindly
request you to do the switch to fonts-noto instead.

If you are using Fallback variants of Droid fonts, I would like note
that these fonts will still be shipped as part of new
fonts-droid-fallback package.

¹ https://github.com/googlei18n/noto-fonts/issues/555
² 
http://lists.alioth.debian.org/pipermail/pkg-fonts-devel/attachments/20151031/011f4334/attachment.mht

Best Regards, 
--- End Message ---
--- Begin Message ---
Source: blender
Source-Version: 2.76.b+dfsg0-1

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

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

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

Debian distribution maintenance software
pp.
Matteo F. Vescovi  (supplier of updated blender package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 21 Nov 2015 21:56:39 +0100
Source: blender
Binary: blender blender-data blender-dbg
Architecture: source
Version: 2.76.b+dfsg0-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Matteo F. Vescovi 
Description:
 blender- Very fast and versatile 3D modeller/renderer
 blender-data - Very fast and versatile 3D modeller/renderer - data package
 blender-dbg - Very fast and versatile 3D modeller/renderer - debug package
Closes: 804678
Changes:
 blender (2.76.b+dfsg0-1) experimental; urgency=medium
 .
   * New upstream bugfix release
 - debian/patches/: patchset updated against v2.76b
   - #0006 renamed to 0006-look_for_dejavu_ttf_with_fontconfig.patch
 with the usage of DejaVu fonts instead of Droid (Closes: #804678)
   - 0007-fix_FTBFS_on_non-x86_platforms.patch dropped
 (applied upstream)
Checksums-Sha1:
 4748bfbea90095d5a56e71d099644e50c89bd3b3 2918 blender_2.76.b+dfsg0-1.dsc
 bd65e0caa0420e999e696e047607eae7f283031c 28918964 
blender_2.76.b+dfsg0.orig.tar.xz
 8d8b5593bffc7fbc9ba235751942904acc5b10ef 42584 
blender_2.76.b+dfsg0-1.debian.tar.xz
Checksums-Sha256:
 098fe333b9d72dc0db5293b3c773942e954fad1cdde62f2114126df939ee5f04 2918 
blender_2.76.b+dfsg0-1.dsc
 1631b43e810a4ed3912dedda022bd22b2cd38dac07c3094aca098d87215fe32e 28918964 
blender_2.76.b+dfsg0.orig.tar.xz
 ccff56bcca64a390382f13210f0dc0af3f7e19135fd6c4dd769de62f50b6e000 42584 
blender_2.76.b+dfsg0-1.debian.tar.xz
Files:
 473d8e1ba8fc0fc8ef27a6741d08aba7 2918 graphics optional 
blender_2.76.b+dfsg0-1.dsc
 34d3e18373e39947bc96756011511a04 28918964 graphics optional 
blender_2.76.b+dfsg0.orig.tar.xz
 f1505230a22e92c737242006fd7cf479 42584 graphics optional 
blender_2.76.b+dfsg0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Comment: Debian powered!

iQJ8BAEBCgBmBQJWaIsqXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRGM0REMDlGOERBODdEMURGNTA0NkM5OUIw
NjEyRjQ5NDRFQ0RDRDVBAAoJEAYS9JROzc1aopoP/2XOGH5Rf3R0xzteXTS/AFqm
ZOvoTsDDjrkBetMBV3wmikslPQ4itM+ClBYBU/50bjFnlCnFJLcTFfBs5YM8QkBQ
cHIiHBQ609hFlMTUXClCvQ1dM7f8yRZXhf7Tqxc9QAwyTNfdUTDLkS6HpnVECCNh
9Sgl+F5vsCmzcC6th2o7/aHV0OhazovN/koeRgyJNfR1nFOiL2C+9V2OSOpvNXs/
4Lg3UX3BBBqs1UmgdjAzB7QlLZ5OVQIuzH2CRjLLGf+QXOYkHAdXE8iPKXJVL0kJ
SAWo8dalz5p8tQrGpMRFM4fmO1hzlOJWL04pZrEQBRkiRLArBHr3W14QT2Cjs/YF
CZJLYpfdJRNGgjZi35hcLFe+cNK0ANuQ82SQka2HdaVjaYG5hzMqNGcZ8vhOCQq9
BarGzZrCuR5mlyXpdbSn4+vcUkxZUkvLfX0+QXfoi3tP8BpHstZ7iniZ1xOBUZjY
jedvSFYmACiHwTul63AcC4q3SMrN

blender_2.76.b+dfsg0-1_source.changes ACCEPTED into experimental

2015-12-09 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 21 Nov 2015 21:56:39 +0100
Source: blender
Binary: blender blender-data blender-dbg
Architecture: source
Version: 2.76.b+dfsg0-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Matteo F. Vescovi 
Description:
 blender- Very fast and versatile 3D modeller/renderer
 blender-data - Very fast and versatile 3D modeller/renderer - data package
 blender-dbg - Very fast and versatile 3D modeller/renderer - debug package
Closes: 804678
Changes:
 blender (2.76.b+dfsg0-1) experimental; urgency=medium
 .
   * New upstream bugfix release
 - debian/patches/: patchset updated against v2.76b
   - #0006 renamed to 0006-look_for_dejavu_ttf_with_fontconfig.patch
 with the usage of DejaVu fonts instead of Droid (Closes: #804678)
   - 0007-fix_FTBFS_on_non-x86_platforms.patch dropped
 (applied upstream)
Checksums-Sha1:
 4748bfbea90095d5a56e71d099644e50c89bd3b3 2918 blender_2.76.b+dfsg0-1.dsc
 bd65e0caa0420e999e696e047607eae7f283031c 28918964 
blender_2.76.b+dfsg0.orig.tar.xz
 8d8b5593bffc7fbc9ba235751942904acc5b10ef 42584 
blender_2.76.b+dfsg0-1.debian.tar.xz
Checksums-Sha256:
 098fe333b9d72dc0db5293b3c773942e954fad1cdde62f2114126df939ee5f04 2918 
blender_2.76.b+dfsg0-1.dsc
 1631b43e810a4ed3912dedda022bd22b2cd38dac07c3094aca098d87215fe32e 28918964 
blender_2.76.b+dfsg0.orig.tar.xz
 ccff56bcca64a390382f13210f0dc0af3f7e19135fd6c4dd769de62f50b6e000 42584 
blender_2.76.b+dfsg0-1.debian.tar.xz
Files:
 473d8e1ba8fc0fc8ef27a6741d08aba7 2918 graphics optional 
blender_2.76.b+dfsg0-1.dsc
 34d3e18373e39947bc96756011511a04 28918964 graphics optional 
blender_2.76.b+dfsg0.orig.tar.xz
 f1505230a22e92c737242006fd7cf479 42584 graphics optional 
blender_2.76.b+dfsg0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Comment: Debian powered!

iQJ8BAEBCgBmBQJWaIsqXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRGM0REMDlGOERBODdEMURGNTA0NkM5OUIw
NjEyRjQ5NDRFQ0RDRDVBAAoJEAYS9JROzc1aopoP/2XOGH5Rf3R0xzteXTS/AFqm
ZOvoTsDDjrkBetMBV3wmikslPQ4itM+ClBYBU/50bjFnlCnFJLcTFfBs5YM8QkBQ
cHIiHBQ609hFlMTUXClCvQ1dM7f8yRZXhf7Tqxc9QAwyTNfdUTDLkS6HpnVECCNh
9Sgl+F5vsCmzcC6th2o7/aHV0OhazovN/koeRgyJNfR1nFOiL2C+9V2OSOpvNXs/
4Lg3UX3BBBqs1UmgdjAzB7QlLZ5OVQIuzH2CRjLLGf+QXOYkHAdXE8iPKXJVL0kJ
SAWo8dalz5p8tQrGpMRFM4fmO1hzlOJWL04pZrEQBRkiRLArBHr3W14QT2Cjs/YF
CZJLYpfdJRNGgjZi35hcLFe+cNK0ANuQ82SQka2HdaVjaYG5hzMqNGcZ8vhOCQq9
BarGzZrCuR5mlyXpdbSn4+vcUkxZUkvLfX0+QXfoi3tP8BpHstZ7iniZ1xOBUZjY
jedvSFYmACiHwTul63AcC4q3SMrNLoQOn0/HL3a5ouhIsKMVi6XkVTU7ZRuaJptE
FheC/d9nFfEcBEXRCIhTTrdfsiyBWBZhVV004rNscusArcIBBMG5fAq6nNvMkyxk
pxo5CZcJtvHxJMopCtdV6F1xToKXW9EaLKj60javErgPhPTucLRG8YbwMYdJt3EW
800OlpBJH718cVw2IXUk
=msv/
-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


Processing of blender_2.76.b+dfsg0-1_source.changes

2015-12-09 Thread Debian FTP Masters
blender_2.76.b+dfsg0-1_source.changes uploaded successfully to localhost
along with the files:
  blender_2.76.b+dfsg0-1.dsc
  blender_2.76.b+dfsg0.orig.tar.xz
  blender_2.76.b+dfsg0-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.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


Re: VCS mails now forwarded to dispatch+$src_...@tracker.debian.org

2015-12-09 Thread Matteo F. Vescovi
Hi!

On 2015-12-09 at 20:01 (CET), Sebastian Ramacher wrote:
> as announced today (<20151209111821.ga13...@home.ouaza.com>) commit messages
> should not be sent to dispatch+$src_...@tracker.debian.org. I have updated
> our setup-repository script and hooks.bcc of all git repositories to the new
> address. Let me know if there are any problems.

Massive! :)

Thanks a lot, Seb.

Cheers.


-- 
Matteo F. Vescovi || Debian Developer
GnuPG KeyID: 4096R/0x8062398983B2CF7A


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: VCS mails now forwarded to dispatch+$src_...@tracker.debian.org

2015-12-09 Thread Alessio Treglia
On Wed, Dec 9, 2015 at 7:01 PM, Sebastian Ramacher  wrote:
> I have updated our setup-repository script and hooks.bcc of all git 
> repositories to the
> new address

Nice work, thanks mate!

-- 
Alessio Treglia  | www.alessiotreglia.com
Debian Developer | ales...@debian.org
Ubuntu Core Developer|  quadris...@ubuntu.com
0416 0004 A827 6E40 BB98 90FB E8A4 8AE5 311D 765A

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


VCS mails now forwarded to dispatch+$src_...@tracker.debian.org

2015-12-09 Thread Sebastian Ramacher
Hi all,

as announced today (<20151209111821.ga13...@home.ouaza.com>) commit messages
should not be sent to dispatch+$src_...@tracker.debian.org. I have updated
our setup-repository script and hooks.bcc of all git repositories to the new
address. Let me know if there are any problems.

Cheers
-- 
Sebastian Ramacher


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#807503: vlc: snapshots

2015-12-09 Thread westlake

Package: vlc
Version: 2.2.0~rc2-2+deb8u1
Severity: normal

take snapshot works but only for .flv files

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


gsequencer 0.6.28-1 MIGRATED to testing

2015-12-09 Thread Debian testing watch
FYI: The status of the gsequencer source package
in Debian's testing distribution has changed.

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