Re: Bug#765009: Subject: RFS: abcmidi/20140928-1 [ITA]

2014-10-25 Thread Ross Gammon
Yes - thanks to both James  Tobias for your help with this!

I was working through the issues one by one, and was planning to
update the RFS bug with my status today :-)

The manpage is done, and just needs checking. I have already been in
touch with upstream about the 3 Mayhem bugs, and will forward the
manpage  the other patches. I will also discuss the other warnings 
build issues.

The upstream author (Seymour) actually uses Debian, so he is extra
helpfull!!

Regards,

Ross

On 10/25/2014 01:18 AM, Tobias Frost wrote:
 Many thanks James! Valid points
 
 Ross, please also consider those comments. Especially please fix
 the build system. I missed that during my review, sorry, but I will
 file a bug for that.
 
 (Also, please send your patches upstream.)
 
 -- tobi
 
 
 Am Montag, den 20.10.2014, 21:59 +0100 schrieb James Cowgill:
 On Mon, 2014-10-20 at 15:59 +0200, Ross Gammon wrote:
 Hi All,
 
 I know everyone is busy with the Jessie Release Freeze, but I
 would be grateful if somebody could take a look at abcmidi (and
 sponsor if happy). Abcmidi has been sitting unloved for a while
 now (since 2007). It would be great to get the latest version
 into Jessie.
 
 Hi,
 
 Here's a review (I'm not a DD so can't sponsor you however).
 
 General * There is a new upstream version (16th October 2014). *
 #764998 abcmidi: binary-without-manpage usr/bin/abcmatch 
 Obviously you know this, but it would be good if a manpage was
 added. * The file /usr/share/doc/abcmidi/VERSION seems
 redundant and can probably be removed.
 
 Also ÁUTHORS should not be installed.
 
 
 debian/copyright * You don't need to list abc.h, sizes.h,
 structs.h manually in the first section since they're already
 included when you say Files: *. * There seems to be some
 confusion about whether the code is GPL-2 or GPL-2+. Are you sure
 what you've put is correct? I see files with no copyright headers
 but nothing with GPL 2 only in them. * You don't need to repeat
 the GPL header lots of times. I'd also be tempted to merge all
 the GPL sections together and just have a large Copyright:
 block.
 
 debian/rules * I don't think you need to use autotools-dev in
 this package (I don't know a huge amount about this though). *
 The clean target doesn't work because you disabled it. This is a 
 violation of debian policy (4.9) clean (required): This must
 undo any effects that the build and binary targets may have had
 
 debian/patches: * Make sure you send these patches upstream
 (sorry if you've already done this - they're not in the new
 version though). * hardening.patch: Only LDFLAGS should be passed
 during the link stage. Remove your CFLAGS and CPPFLAGS
 additions.
 
 Build There are lots of bad warnings printed when building this 
 Examples: * parseabc.c:1701:3: warning: format ‘%s’ expects
 argument of type ‘char *’, but argument 3 has type ‘char **’
 [-Wformat=] success = sscanf (s, %%abc-version %s,
 abcversion); /* [SS] 2014-08-11 */
 
 Isn't this a buffer overflow?!
 
 * toabc.c:1490:8: warning: iteration 7u invokes undefined
 behavior [-Waggressive-loop-optimizations] semi =
 convertnote[i];
 
 It's not too difficult to use these to make abc2midi segfault -
 please try and fix them if you have time.
 
 James
 
 
 


___
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: Bug#765009: Subject: RFS: abcmidi/20140928-1 [ITA]

2014-10-25 Thread Tobias Frost
Hi Ross, 

Am Samstag, den 25.10.2014, 09:29 +0200 schrieb Ross Gammon:
 Yes - thanks to both James  Tobias for your help with this!
 
 I was working through the issues one by one, and was planning to
 update the RFS bug with my status today :-)
 
 The manpage is done, and just needs checking. I have already been in
 touch with upstream about the 3 Mayhem bugs, and will forward the
 manpage  the other patches. I will also discuss the other warnings 
 build issues.
 
 The upstream author (Seymour) actually uses Debian, so he is extra
 helpfull!!

ping me when ready -- please try to fix the buildsystem within today, so
we can upload before the freeze (mind the 10-day delay to testing)

no need to file an RFS* bug, you can just ping me per mail.
(but include the link to mentors, especially to the dsc file...
btw I'd be happy to see VCS-* fields in d/control *wink*)

* I just closed the old one

-- 
tobi

 Regards,
 
 Ross
 
 On 10/25/2014 01:18 AM, Tobias Frost wrote:
  Many thanks James! Valid points
  
  Ross, please also consider those comments. Especially please fix
  the build system. I missed that during my review, sorry, but I will
  file a bug for that.
  
  (Also, please send your patches upstream.)
  
  -- tobi
  
  
  Am Montag, den 20.10.2014, 21:59 +0100 schrieb James Cowgill:
  On Mon, 2014-10-20 at 15:59 +0200, Ross Gammon wrote:
  Hi All,
  
  I know everyone is busy with the Jessie Release Freeze, but I
  would be grateful if somebody could take a look at abcmidi (and
  sponsor if happy). Abcmidi has been sitting unloved for a while
  now (since 2007). It would be great to get the latest version
  into Jessie.
  
  Hi,
  
  Here's a review (I'm not a DD so can't sponsor you however).
  
  General * There is a new upstream version (16th October 2014). *
  #764998 abcmidi: binary-without-manpage usr/bin/abcmatch 
  Obviously you know this, but it would be good if a manpage was
  added. * The file /usr/share/doc/abcmidi/VERSION seems
  redundant and can probably be removed.
  
  Also ÁUTHORS should not be installed.
  
  
  debian/copyright * You don't need to list abc.h, sizes.h,
  structs.h manually in the first section since they're already
  included when you say Files: *. * There seems to be some
  confusion about whether the code is GPL-2 or GPL-2+. Are you sure
  what you've put is correct? I see files with no copyright headers
  but nothing with GPL 2 only in them. * You don't need to repeat
  the GPL header lots of times. I'd also be tempted to merge all
  the GPL sections together and just have a large Copyright:
  block.
  
  debian/rules * I don't think you need to use autotools-dev in
  this package (I don't know a huge amount about this though). *
  The clean target doesn't work because you disabled it. This is a 
  violation of debian policy (4.9) clean (required): This must
  undo any effects that the build and binary targets may have had
  
  debian/patches: * Make sure you send these patches upstream
  (sorry if you've already done this - they're not in the new
  version though). * hardening.patch: Only LDFLAGS should be passed
  during the link stage. Remove your CFLAGS and CPPFLAGS
  additions.
  
  Build There are lots of bad warnings printed when building this 
  Examples: * parseabc.c:1701:3: warning: format ‘%s’ expects
  argument of type ‘char *’, but argument 3 has type ‘char **’
  [-Wformat=] success = sscanf (s, %%abc-version %s,
  abcversion); /* [SS] 2014-08-11 */
  
  Isn't this a buffer overflow?!
  
  * toabc.c:1490:8: warning: iteration 7u invokes undefined
  behavior [-Waggressive-loop-optimizations] semi =
  convertnote[i];
  
  It's not too difficult to use these to make abc2midi segfault -
  please try and fix them if you have time.
  
  James
  
  
  
 



signature.asc
Description: This is a digitally signed message part
___
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: mpv: Can't play audio CDs with cdda://: Either No stream found to handle url or Error parsing option cdrom-device (option not found)

2014-10-25 Thread Debian Bug Tracking System
Processing control commands:

 found -1 0.6.2-1+ffmpeg
Bug #766725 [mpv] mpv: Can't play audio CDs with cdda://: Either No stream 
found to handle url or Error parsing option cdrom-device (option not found)
Marked as found in versions mpv/0.6.2-1+ffmpeg.

-- 
766725: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=766725
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#766725: mpv: Can't play audio CDs with cdda://: Either No stream found to handle url or Error parsing option cdrom-device (option not found)

2014-10-25 Thread Axel Beckert
Package: mpv
Version: 0.6.2-1
Control: found -1 0.6.2-1+ffmpeg

Dear Debian Multimedia Maintainers,

I've tried to play an audio CD with mpv.

From the man page mpv(1):

   cdda://track[-endtrack][:speed][/device] --cdrom-device=PATH --cdda-...
  Play CD.

   […]

   --cdrom-device=path
  Specify the CD-ROM device (default: /dev/cdrom).

So I first tried

→ mpv cdda://
Playing: cdda://
No stream found to handle url cdda://


Exiting... (No files played)
→

Then I tried

→ mpv --cdrom-device=/dev/cdrom cdda://
Error parsing option cdrom-device (option not found)
Setting commandline option --cdrom-device=/dev/cdrom failed.

Exiting... (Fatal error)
→

mpv 0.6.2-1 and 0.6.2-1+ffmpeg behave identical with regards to this
issue.

Feel free to clone and retitle this issue in case these are two
independent issues. In case mpv can't play any audio CDs any more on
purpose, please update the man page accordingly and drop the above cited
sections.

JFTR: mplayer2 works fine on the same system with the same device (an
ASUS USB DVD-RW drive reported as HL-DT-ST DVDRAM GU40N connected as
/dev/sr0, with symlink at /dev/cdrom) and the same CD in both cases:

→ mplayer cdda://
MPlayer2 2.0-728-g2c378c7-4+b1 (C) 2000-2012 MPlayer Team
Cannot open file '/home/abe/.mplayer/input.conf': No such file or directory
Failed to open /home/abe/.mplayer/input.conf.
Cannot open file '/etc/mplayer/input.conf': No such file or directory
Failed to open /etc/mplayer/input.conf.

Playing cdda://.
Found audio CD with 10 tracks.

Track 1
Detected file format: rawaudio
Selected audio codec: Uncompressed PCM [pcm]
AUDIO: 44100 Hz, 2 ch, s16le, 1411.2 kbit/100.00% (ratio: 176400-176400)
AO: [pulse] Init failed: Connection refused
AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
Video: no video
Starting playback...
A:  10.3 (10.3) of 2068.1 (34:28.1)  1.2% 

Exiting... (Quit)
→ mplayer --cdrom-device=/dev/cdrom cdda://
MPlayer2 2.0-728-g2c378c7-4+b1 (C) 2000-2012 MPlayer Team
Cannot open file '/home/abe/.mplayer/input.conf': No such file or directory
Failed to open /home/abe/.mplayer/input.conf.
Cannot open file '/etc/mplayer/input.conf': No such file or directory
Failed to open /etc/mplayer/input.conf.

Playing cdda://.
Found audio CD with 10 tracks.

Track 1
Detected file format: rawaudio
Selected audio codec: Uncompressed PCM [pcm]
AUDIO: 44100 Hz, 2 ch, s16le, 1411.2 kbit/100.00% (ratio: 176400-176400)
AO: [pulse] Init failed: Connection refused
AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
Video: no video
Starting playback...
A:   3.9 (03.8) of 2068.1 (34:28.1)  1.2% 

Exiting... (Quit)
→

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (600, 'testing'), (110, 'experimental'), (109, 
'buildd-unstable'), (109, 'buildd-experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.17-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mpv depends on:
ii  libasound2  1.0.28-1
ii  libass5 0.10.2-3
ii  libavcodec566:11-2
ii  libavdevice55   6:11-2
ii  libavfilter56:11-2
ii  libavformat56   6:11-2
ii  libavresample2  6:11-2
ii  libavutil54 6:11-2
ii  libbluray1  1:0.6.2-1
ii  libbs2b03.1.0+dfsg-2.1
ii  libc6   2.19-12
ii  libdvdnav4  5.0.1-1
ii  libdvdread4 5.0.0-1
ii  libegl1-mesa [libegl1-x11]  10.3.1-1
ii  libenca01.16-1
ii  libgl1-mesa-glx [libgl1]10.3.1-1
ii  libguess1   1.2-1
ii  libjack-jackd2-0 [libjack-0.116]1.9.10+20140719git3eb0ae6a~dfsg-2
ii  libjpeg62-turbo 1:1.3.1-10
ii  liblcms2-2  2.6-3+b2
ii  liblircclient0  0.9.0~pre1-1.1
ii  liblua5.2-0 5.2.3-1.1
ii  libmpg123-0 1.20.1-2
ii  libpulse0   5.0-13
ii  libquvi70.4.1-2.1
ii  libsdl2-2.0-0   2.0.2+dfsg1-5
ii  libswscale3 6:11-2
ii  libuuid12.25.2-2
ii  libva-glx1  1.4.1-1
ii  libva-x11-1 1.4.1-1
ii  libva1  1.4.1-1
ii  libvdpau1   0.8-3
ii  libwayland-client0  1.6.0-2
ii  libwayland-cursor0  1.6.0-2
ii  libwayland-egl1-mesa [libwayland-egl1]  10.3.1-1
ii  libx11-62:1.6.2-3
ii  libxext6 

Bug#763647: marked as done (xbmc-bin: crashes while trying to handle CD/DVD drives although no media is present)

2014-10-25 Thread Bálint Réczey
Control: tags -1 moreinfo

Hi Sebastian,

2014-10-08 22:42 GMT+02:00 Sebastian Ramacher sramac...@debian.org:
 Control: reopen -1

 I am not able to reproduce the issue anymore. Since the crash happended
 the last time, I have rebooted with a new kernel. So maybe this was just
 a transient issue. If it should happen again, I'll provide you a better
 back trace.

 Closing for now.

 And reopening. I've nuked my ~/.xbmc and the crash is back. Thanks to
 the -dbg package with a better trace back this time:

 Program received signal SIGSEGV, Segmentation fault.
 [Switching to Thread 0x7fffd3870700 (LWP 7978)]
 __GI___libc_free (mem=0x220810001) at malloc.c:2929
 2929malloc.c: No such file or directory.
 (gdb) bt full
 #0  __GI___libc_free (mem=0x220810001) at malloc.c:2929
 ar_ptr = optimized out
 p = optimized out
 hook = 0x0
 #1  0x7170efe5 in cdtext_destroy () from /usr/lib/libcdio.so.13
 No symbol table info available.
 #2  0x7170d83b in ?? () from /usr/lib/libcdio.so.13
 No symbol table info available.
 #3  0x7170f7bd in cdio_destroy () from /usr/lib/libcdio.so.13
 No symbol table info available.
 #4  0x00ca3255 in MEDIA_DETECT::CCdIoSupport::GetCdInfo 
 (this=this@entry=0x7fffd386bb80, cDeviceFileName=cDeviceFileName@entry=0x0)
...
It is crashing in libcdio which has been updated recently.
Could you please try downgrading libcdio13 and trying version from
experimental to rule libcdio out?
If it is still crashing I suspect a memory allocation handling
problem. Could you please test the bug using valgrind?

I looked at XBMC's code and it seems to be OK.

Cheers,
Balint

___
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#763647: marked as done (xbmc-bin: crashes while trying to handle CD/DVD drives although no media is present)

2014-10-25 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 moreinfo
Bug #763647 [xbmc-bin] xbmc-bin: crashes while trying to handle CD/DVD drives 
although no media is present
Ignoring request to alter tags of bug #763647 to the same tags previously set

-- 
763647: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=763647
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#766725: mpv: Can't play audio CDs with cdda://: Either No stream found to handle url or Error parsing option cdrom-device (option not found)

2014-10-25 Thread Alessandro Ghedini
On sab, ott 25, 2014 at 12:15:33 +0200, Axel Beckert wrote:
 Package: mpv
 Version: 0.6.2-1
 Control: found -1 0.6.2-1+ffmpeg
 
 Dear Debian Multimedia Maintainers,
 
 I've tried to play an audio CD with mpv.
 
 From the man page mpv(1):
 
cdda://track[-endtrack][:speed][/device] --cdrom-device=PATH --cdda-...
   Play CD.
 
[…]
 
--cdrom-device=path
   Specify the CD-ROM device (default: /dev/cdrom).

Yeah, native cdda support (via libcdio) was disabled, but you can still play CDs
by using libavdevice. Something like:

mpv av://libcdio:/dev/cdrom

However this is not very user-friendly I guess, and it'd be nice if mpv
automaticcaly translated all the cdda:// URLs and --cdrom-device/--cdda-*
options to libavdevice automatically, so I opened [0] upstream.

 Then I tried
 
 → mpv --cdrom-device=/dev/cdrom cdda://
 Error parsing option cdrom-device (option not found)
 Setting commandline option --cdrom-device=/dev/cdrom failed.
 
 Exiting... (Fatal error)

That's actually normal because --cdrom-device is only available when cdda
support is enabled.

Anyway, I'll probably re-enable the native cdda support for the time being.

Cheers

[0] https://github.com/mpv-player/mpv/pull/1214


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

Bug#766725: mpv: Can't play audio CDs with cdda://: Either No stream found to handle url or Error parsing option cdrom-device (option not found)

2014-10-25 Thread Alessandro Ghedini
On sab, ott 25, 2014 at 02:35:22 +0200, Axel Beckert wrote:
 Hi,
 
 Alessandro Ghedini wrote:
  Yeah, native cdda support (via libcdio) was disabled, but you can still 
  play CDs
  by using libavdevice. Something like:
  
  mpv av://libcdio:/dev/cdrom
 
 Doesn't work for me:
 
 → mpv av://libcdio:/dev/cdrom
 Playing: av://libcdio:/dev/cdrom
 [stream] Audio (+) --aid=1 (pcm_s16le)
 Error initializing audio.
 : 00:00:00 / 00:54:23 (0%)
 
 And then it hangs until I exit mpv.

Well, I guess libavdevice's libcdio support is inferior to mplayer/mpv's... the
whole cdda:// support implemented via libavdevice won't work either then.

  Anyway, I'll probably re-enable the native cdda support for the time
  being.
 
 That'd be nice, thanks!

Done. I hope this fixes the problem and that it'll make it into jessie in time.

Cheers


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

Processing of mpv_0.6.2-2_amd64.changes

2014-10-25 Thread Debian FTP Masters
mpv_0.6.2-2_amd64.changes uploaded successfully to ftp-master.debian.org
along with the files:
  mpv_0.6.2-2.dsc
  mpv_0.6.2-2.debian.tar.xz
  mpv_0.6.2-2_amd64.deb
  mpv-dbg_0.6.2-2_amd64.deb
  libmpv1_0.6.2-2_amd64.deb
  libmpv-dev_0.6.2-2_amd64.deb
  libmpv-dbg_0.6.2-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host coccia.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 mpv_0.6.2-2_amd64.changes

2014-10-25 Thread Debian FTP Masters
mpv_0.6.2-2_amd64.changes uploaded successfully to localhost
along with the files:
  mpv_0.6.2-2.dsc
  mpv_0.6.2-2.debian.tar.xz
  mpv_0.6.2-2_amd64.deb
  mpv-dbg_0.6.2-2_amd64.deb
  libmpv1_0.6.2-2_amd64.deb
  libmpv-dev_0.6.2-2_amd64.deb
  libmpv-dbg_0.6.2-2_amd64.deb

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


CUT Your AdWords Costs by 50% and Increase Sales! 5 day free course.

2014-10-25 Thread AdWords Account Notification
CUT your AdWords costs by 50% and Increase your Sales?
FREE five part AdWords course called.
 How to CUT your AdWords costs and INCREASE AdWords sales! written by a Top 
AdWords Guru and SEO master.
AT the end of this FREE course you will learn all you need to know to make your 
AdWords campaign work as never-before!
This course will help you unlock the potential of your AdWords campaign.
You will be astounded at how straight forward it can be to cut your Adwords 
costs and increase sales!
It works every time!
Just Press Here and we will send this course to you for FREE!
The AdWords Guru

This is a B2B communication. If you have received this in error please accept 
our apologies.



___
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#765969: [vlc] green line under some Mpeg-4 XVID videos

2014-10-25 Thread Francesco Muzio

I have to correct myself,

the output modules have effect after a restart of VLC.

starting VLC with x11 output video reproduce the same movie without the 
green line


Hence
$ vlc -V x11
and
$ vlc -V glx
do not show the green line, instead of
$ vlc -V vdpau
and
$vlc -V xv
that show this bug

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


mpv_0.6.2-2_amd64.changes ACCEPTED into unstable

2014-10-25 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 25 Oct 2014 15:16:57 +0200
Source: mpv
Binary: mpv mpv-dbg libmpv1 libmpv-dev libmpv-dbg
Architecture: source amd64
Version: 0.6.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Alessandro Ghedini gh...@debian.org
Description:
 libmpv-dbg - video player based on MPlayer/mplayer2 (client library debug)
 libmpv-dev - video player based on MPlayer/mplayer2 (client library dev files)
 libmpv1- video player based on MPlayer/mplayer2 (client library)
 mpv- video player based on MPlayer/mplayer2
 mpv-dbg- video player based on MPlayer/mplayer2 (debug)
Closes: 766725
Changes:
 mpv (0.6.2-2) unstable; urgency=medium
 .
   * Re-enable CDDA support via libcdio (Closes: #766725)
Checksums-Sha1:
 928697d8222f21c67754f2c7dd1561814e32d712 2822 mpv_0.6.2-2.dsc
 c926feb2e2f4815181d7eea18f232e72e6222952 92112 mpv_0.6.2-2.debian.tar.xz
 89177341f74bcdbadfdc7b0f455d9a6096ce600c 749318 mpv_0.6.2-2_amd64.deb
 debbdf33363b7b2320113054ed7c955cbf61fd55 1946046 mpv-dbg_0.6.2-2_amd64.deb
 3ac47f200ef5d39934af7ab5dd96823844deaa5e 585074 libmpv1_0.6.2-2_amd64.deb
 10c3933cf26b2eef48fceda14545e24dab85b280 27038 libmpv-dev_0.6.2-2_amd64.deb
 7e2a1946cf1fe0180152d25eaeac40e225965ad8 1933180 libmpv-dbg_0.6.2-2_amd64.deb
Checksums-Sha256:
 5a064cfb1788da0a6c1d63e83ef61b36df61bfcb6214fbda129ff22186552df1 2822 
mpv_0.6.2-2.dsc
 ebe43325fbe3e32cfe62c42060050be4c49e0ef7e8b4de6368397e13d6989710 92112 
mpv_0.6.2-2.debian.tar.xz
 7dcdbcf80b84e3c724e9fde6dfd46b4edb38de9dc7c2e83afe1213d50c582369 749318 
mpv_0.6.2-2_amd64.deb
 a21d747b5edf3f58d349581697e0b61c13db74fb932a4c2352ab7dea91f21107 1946046 
mpv-dbg_0.6.2-2_amd64.deb
 b8f611c2e540856a459e25b229cacf74cc3d02393bbcdd21c332b8ae6fafc904 585074 
libmpv1_0.6.2-2_amd64.deb
 60fa3b08c288811e6a990c683adaf97293a60fb7b8bf3dc2d2c48798cfbd4324 27038 
libmpv-dev_0.6.2-2_amd64.deb
 bb1fb59adec094dda7ced1cc1e68f448d758701d8291a2015b28c89fcd9b8843 1933180 
libmpv-dbg_0.6.2-2_amd64.deb
Files:
 f918733938625b5bfeacdd700167eb30 2822 video optional mpv_0.6.2-2.dsc
 1548c10fed2ab8dcd3409ce9688730c4 92112 video optional mpv_0.6.2-2.debian.tar.xz
 70a9202d886fa7a33f4a59eff815d4ad 749318 video optional mpv_0.6.2-2_amd64.deb
 5d25c8d566dcbce8fc9eebf306d4e839 1946046 debug extra mpv-dbg_0.6.2-2_amd64.deb
 1e40f95c2eb69749702453dc9951a826 585074 libs optional libmpv1_0.6.2-2_amd64.deb
 2ed4ab08fe4dabefdf4c58e80165618f 27038 libdevel optional 
libmpv-dev_0.6.2-2_amd64.deb
 235bf93b5af7de80319a090e3a0db009 1933180 debug extra 
libmpv-dbg_0.6.2-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUS6P8AAoJEK+lG9bN5XPL4jIP/RsBCCuixp7bX977VW5ftdgU
BT5PhNmKIkkU1vptlj1O0b/eJEF7zuiBakX1hoGoJkZN0JXJQU6qDu2yAbukPL19
I4m5ec+orF9Vss3Jg+PYCnIgGa/NzMsVLfD7DgRSfEZni0PxJJ6gm+/5SAKuHcFc
0lEZmnL5RKbEbYV8In2ehc5CzT31Qq3yVUD0IhoGD1sNG+7891Rj/GvC0IH7RyKw
VMdvHWvU85yyXaTUR9/G0/p83Dpabrr5MWeh8+I5QetfNq7anCfU6W4dA/6X1fdh
tUoVXdr4o7pwzFuZGSJC1ARm8UD/FHN1zxrFLyaPVLWCH664HUrdker2fo5ZplPJ
PtGqlab5ZVOUgBH9lPNpIefs5YLNMdsF2aENTxNauUFMLY//S5cKjNdrxrGWjWMR
vABw1ZOon8WFXYG2cj/yqliMqlaxRgvsLe+7ckDTh8ftLuFPq3hNHWVW6q7ZtRLm
AKcjU6ZnTeaGRR0PjJerzeP2x98boGcvQLZvSQyKf6H3AU7GazfoifYieOoLh1+V
286XXuo3pubzPgCDJpOOppmr0KHBkvYaHdrSOSH/tMZpWPgahcuECwv3S2KuEq81
WOpum5ESVXONHy3+XytYcqCzbMQuxIrYis7wtRieXdVy3B+oFfd/kqm1N/gLkbRl
pBusGseVoftDk2b6cddF
=YNnb
-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#766725: marked as done (mpv: Can't play audio CDs with cdda://: Either No stream found to handle url or Error parsing option cdrom-device (option not found))

2014-10-25 Thread Debian Bug Tracking System
Your message dated Sat, 25 Oct 2014 15:41:18 +
with message-id e1xi3sw-0008gf...@franck.debian.org
and subject line Bug#766725: fixed in mpv 0.6.2-2
has caused the Debian Bug report #766725,
regarding mpv: Can't play audio CDs with cdda://: Either No stream found to 
handle url or Error parsing option cdrom-device (option not found)
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.)


-- 
766725: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=766725
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: mpv
Version: 0.6.2-1
Control: found -1 0.6.2-1+ffmpeg

Dear Debian Multimedia Maintainers,

I've tried to play an audio CD with mpv.

From the man page mpv(1):

   cdda://track[-endtrack][:speed][/device] --cdrom-device=PATH --cdda-...
  Play CD.

   […]

   --cdrom-device=path
  Specify the CD-ROM device (default: /dev/cdrom).

So I first tried

→ mpv cdda://
Playing: cdda://
No stream found to handle url cdda://


Exiting... (No files played)
→

Then I tried

→ mpv --cdrom-device=/dev/cdrom cdda://
Error parsing option cdrom-device (option not found)
Setting commandline option --cdrom-device=/dev/cdrom failed.

Exiting... (Fatal error)
→

mpv 0.6.2-1 and 0.6.2-1+ffmpeg behave identical with regards to this
issue.

Feel free to clone and retitle this issue in case these are two
independent issues. In case mpv can't play any audio CDs any more on
purpose, please update the man page accordingly and drop the above cited
sections.

JFTR: mplayer2 works fine on the same system with the same device (an
ASUS USB DVD-RW drive reported as HL-DT-ST DVDRAM GU40N connected as
/dev/sr0, with symlink at /dev/cdrom) and the same CD in both cases:

→ mplayer cdda://
MPlayer2 2.0-728-g2c378c7-4+b1 (C) 2000-2012 MPlayer Team
Cannot open file '/home/abe/.mplayer/input.conf': No such file or directory
Failed to open /home/abe/.mplayer/input.conf.
Cannot open file '/etc/mplayer/input.conf': No such file or directory
Failed to open /etc/mplayer/input.conf.

Playing cdda://.
Found audio CD with 10 tracks.

Track 1
Detected file format: rawaudio
Selected audio codec: Uncompressed PCM [pcm]
AUDIO: 44100 Hz, 2 ch, s16le, 1411.2 kbit/100.00% (ratio: 176400-176400)
AO: [pulse] Init failed: Connection refused
AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
Video: no video
Starting playback...
A:  10.3 (10.3) of 2068.1 (34:28.1)  1.2% 

Exiting... (Quit)
→ mplayer --cdrom-device=/dev/cdrom cdda://
MPlayer2 2.0-728-g2c378c7-4+b1 (C) 2000-2012 MPlayer Team
Cannot open file '/home/abe/.mplayer/input.conf': No such file or directory
Failed to open /home/abe/.mplayer/input.conf.
Cannot open file '/etc/mplayer/input.conf': No such file or directory
Failed to open /etc/mplayer/input.conf.

Playing cdda://.
Found audio CD with 10 tracks.

Track 1
Detected file format: rawaudio
Selected audio codec: Uncompressed PCM [pcm]
AUDIO: 44100 Hz, 2 ch, s16le, 1411.2 kbit/100.00% (ratio: 176400-176400)
AO: [pulse] Init failed: Connection refused
AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
Video: no video
Starting playback...
A:   3.9 (03.8) of 2068.1 (34:28.1)  1.2% 

Exiting... (Quit)
→

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (600, 'testing'), (110, 'experimental'), (109, 
'buildd-unstable'), (109, 'buildd-experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.17-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mpv depends on:
ii  libasound2  1.0.28-1
ii  libass5 0.10.2-3
ii  libavcodec566:11-2
ii  libavdevice55   6:11-2
ii  libavfilter56:11-2
ii  libavformat56   6:11-2
ii  libavresample2  6:11-2
ii  libavutil54 6:11-2
ii  libbluray1  1:0.6.2-1
ii  libbs2b03.1.0+dfsg-2.1
ii  libc6   2.19-12
ii  libdvdnav4  5.0.1-1
ii  libdvdread4 5.0.0-1
ii  libegl1-mesa [libegl1-x11]  10.3.1-1
ii  libenca01.16-1
ii  libgl1-mesa-glx [libgl1]10.3.1-1
ii  libguess1   1.2-1
ii  libjack-jackd2-0 [libjack-0.116]1.9.10+20140719git3eb0ae6a~dfsg-2
ii  libjpeg62-turbo 1:1.3.1-10
ii 

Bug#765779: Please don't let audacity freeze like this...

2014-10-25 Thread Martin Steghöfer

Martin Steghöfer wrote:

Andoru Ekkusu wrote:

Does anyone have any idea when this patch will be committed?


Hopefully soon, otherwise the new package won't make it to testing in 
time before the freeze. Then getting the fix into jessie will become 
much more complicated. I think it's quite important for the usability 
to have these remaining issues fixed.


Attaching a debdiff fixing the bugs #765341 and #765779 - in case that 
helps.


Cheers,
Martin

diff -Nru audacity-2.0.6/debian/changelog audacity-2.0.6/debian/changelog
--- audacity-2.0.6/debian/changelog 2014-10-14 01:28:54.0 +0200
+++ audacity-2.0.6/debian/changelog 2014-10-25 16:54:13.0 +0200
@@ -1,3 +1,12 @@
+audacity (2.0.6-2) unstable; urgency=medium
+
+  * Workaround for wx bug causing layout problems in recovery dialog.
+  * Fix effect dialog segfault due to events before initialization and
+add workaround for wxWidgets bug Reentry in clipboard. (Closes: #765341)
+  * Fix cursor recapturing in track panel sliders. (Closes: #765779)
+
+ -- Martin Steghöfer mar...@steghoefer.eu  Sat, 25 Oct 2014 16:16:17 +0200
+
 audacity (2.0.6-1) unstable; urgency=medium
 
   * New upstream release.
diff -Nru audacity-2.0.6/debian/patches/fix-cursor-recapturing-sliders.patch 
audacity-2.0.6/debian/patches/fix-cursor-recapturing-sliders.patch
--- audacity-2.0.6/debian/patches/fix-cursor-recapturing-sliders.patch  
1970-01-01 01:00:00.0 +0100
+++ audacity-2.0.6/debian/patches/fix-cursor-recapturing-sliders.patch  
2014-10-25 16:48:02.0 +0200
@@ -0,0 +1,26 @@
+Description: Fix cursor recapturing in track panel sliders
+ wxWidgets 3.0 has added a lot of asserts to detect incorrect usage
+ of its APIs. Now capturing the cursor, when it's already captured,
+ throughs an assertion failure. This can be the case in the track
+ panel sliders because the sliders capture the cursor themselves
+ (because they are also used in other places outside the track panel,
+ where this is actually necessary), but the track panel also manages
+ the cursor capturing because it needs it for other operations.
+ Fix the recapturing problem by letting the sliders capture the cursor
+ only if necessary.
+Author: Martin Steghöfer mar...@steghoefer.eu
+Bug-Debian: https://bugs.debian.org/
+
+--- a/src/widgets/ASlider.cpp
 b/src/widgets/ASlider.cpp
+@@ -1070,7 +1070,9 @@ void LWSlider::OnMouseEvent(wxMouseEvent  event)
+event.ShiftDown());
+   }
+ 
+-  mParent-CaptureMouse();
++  if (!mParent-HasCapture()) {
++ mParent-CaptureMouse();
++  }
+   // wxSetCursor(wxCURSOR_BLANK);
+   ((TipPanel*)LWSlider::sharedTipPanel)-SetTargetParent(mParent);
+   FormatPopWin();
diff -Nru audacity-2.0.6/debian/patches/series 
audacity-2.0.6/debian/patches/series
--- audacity-2.0.6/debian/patches/series2014-10-14 01:24:08.0 
+0200
+++ audacity-2.0.6/debian/patches/series2014-10-25 16:56:23.0 
+0200
@@ -1,3 +1,7 @@
 fix-minsrc-autoreconf.patch
 wxWidgets-3.0.patch
 clang-ftbfs.patch
+fix-cursor-recapturing-sliders.patch
+workaround-wxwidgets-fit-recovery.patch
+wxwidgets-clipboard-reentry-workaround.patch
+wxwidgets-effect-dialogs-segfault.patch
diff -Nru audacity-2.0.6/debian/patches/workaround-wxwidgets-fit-recovery.patch 
audacity-2.0.6/debian/patches/workaround-wxwidgets-fit-recovery.patch
--- audacity-2.0.6/debian/patches/workaround-wxwidgets-fit-recovery.patch   
1970-01-01 01:00:00.0 +0100
+++ audacity-2.0.6/debian/patches/workaround-wxwidgets-fit-recovery.patch   
2014-10-25 16:48:59.0 +0200
@@ -0,0 +1,65 @@
+Description: Workaround for wx bug causing layout problems in recovery dialog
+ Workaround for a bug in wxWidgets 3.0 that causes the Fit()
+ function to fail in certain desktop environments (gnome, xfce) 
+ before the first window of the same style class is shown on
+ screen (http://trac.wxwidgets.org/ticket/16440). As a workaround,
+ call Fit() and other methods that depend on its results again
+ *after* we know that the window has been shown. While the bug
+ may affect other calls to Fit() on a low level, the workaround
+ is necessary only for the recovery dialog, which is particularly
+ vulnerable because:
+ 1. It is shown very, very early in the program execution and
+ therefore very likely to be the first dialog of its style class
+ shown on screen.
+ 2. It doesn't have scrollbars or flexible-size controls that
+ could compensate the wrong dialog size.
+Author: Martin Steghöfer mar...@steghoefer.eu
+Forwarded: llluc...@gmail.com, 2014-10-20
+Bug-Debian: http://bugs.debian.org/765341
+
+--- a/src/AutoRecovery.cpp
 b/src/AutoRecovery.cpp
+@@ -38,6 +38,10 @@
+ public:
+AutoRecoveryDialog(wxWindow *parent);
+ 
++#if defined(__WXGTK__)  wxCHECK_VERSION(3, 0, 0)
++   void OnShow(wxShowEvent  event);
++#endif
++
+ private:
+void PopulateList();
+void PopulateOrExchange(ShuttleGui  S);
+@@ -65,6 +69,9 @@
+

o3dgc_0~20131011-1_amd64.changes ACCEPTED into unstable, unstable

2014-10-25 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 21 Oct 2014 19:48:52 +0200
Source: o3dgc
Binary: libo3dgc-dev
Architecture: source amd64
Version: 0~20131011-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Rene Engelhard r...@debian.org
Description:
 libo3dgc-dev - Open 3D Graphics Compression library (development)
Closes: 763455
Changes:
 o3dgc (0~20131011-1) unstable; urgency=low
 .
   * Initial release (Closes: #763455)
Checksums-Sha1:
 a861563899ab6eb32c3bb09118cc5e8a768a7789 1773 o3dgc_0~20131011-1.dsc
 1e3e29a81e0543fe193f4114dfa11fa79ac29db7 135196 o3dgc_0~20131011.orig.tar.xz
 9833896d44593053b34d8d89abbcfc51bad8c2e7 3708 o3dgc_0~20131011-1.debian.tar.xz
 1a00650efbe992b9dd17ade503eb15f51bb34dea 48036 
libo3dgc-dev_0~20131011-1_amd64.deb
Checksums-Sha256:
 15ef67cefac4a71906d57b979492c3145424d94989788e025efe3603b76243e0 1773 
o3dgc_0~20131011-1.dsc
 fd80640f9c344961f541532f4ff29942e9ee67a4cda3d2fda8faa0a8a9c6 135196 
o3dgc_0~20131011.orig.tar.xz
 8b05e3f418f47163489b48bdf904501ff9c54a852d9f1dd6edf18b66c4cae82d 3708 
o3dgc_0~20131011-1.debian.tar.xz
 2582716124a311e1e1d1acbb8be3408678aed3a3078da396b71152900b3d7566 48036 
libo3dgc-dev_0~20131011-1_amd64.deb
Files:
 9fb0ca4ff8c559972d0629d71a0d 1773 libs optional o3dgc_0~20131011-1.dsc
 f5c16dfbdfd2dc87e972170479d814f4 135196 libs optional 
o3dgc_0~20131011.orig.tar.xz
 a1bba8cf18dde785f842c13efcb419ab 3708 libs optional 
o3dgc_0~20131011-1.debian.tar.xz
 dcc9b1520521f85ab618440967bda88d 48036 libdevel optional 
libo3dgc-dev_0~20131011-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJURp0RAAoJEAqgRXHQPj5wYekQAOZcEgqQyZS5RNi7lhoGMAP6
BR9hEKk3s52cpMon9xuJ0F1q58FNLbbFayUJUDazqS0Ea8KotMmKdP62AKD7PQ1Q
PEOzEg2BZYqyLsLyIWvy318J3a+8/ddV+qMkYNnBw5xOlscMm4YtaHib2vXbLAAC
CXHs50dzOROxcgFMaGbmP5nBb0MTp58tTHReAeHrjHC4z7dkfo05Wg2bzA0gts0U
qBlln4A2GnDH8YVS2JbsSiRYJfmiKL+t95VJ8tpvcz/G0nZ1mSE5rqgesAo13AfW
qGGVgaRy8lTPSjsUwZ2DTaO6xqkrvwtLDMpSdg7nOY7lBnxykKuXKRXCORPjosGc
ssfUCkzQ6+0Gu20seqZJGRFqAs76dGikQpcXHE0Eq4xRDwdjlKvslX41dV1jW+6o
4SY7o0Z+T5pxlFFmgNl/f5rbh73w+XKYIs9yH0qIF2JdNVUozK5cIeHmgTAb44QN
oLASzA3mRxKBnsgcTX4b6eeI9Le1i9PI9gAmYQx3UpaFrnTDrNclszNbXmWF+NTF
NoVsT5igWdAaEZ32HLdK/LwlUF12IRhDnAxZ9uXSQ1H2DLGpkU0u125DcK9g4S4Y
FWqc7kNgTuglV0nsRysvpGMzlI1wvIa5HVmZd+MqwB2KYL2lNEtB6UiZXADVv3ow
JY2cZLOUwMd4uknnVKkU
=6IsR
-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#765341: more information

2014-10-25 Thread M.Baldinelli

Klaumi,


Meanwhile I updated my personal package at
http://apt.klaumikli.de/testing as help for all the people who get
into the same problems while audacity-2.0.6-1 reached testing today.


This bug hit me too (blank window and empty dialog, and the assert message when 
starting Audacity from terminal), so after a quick search I discovered this 
discussion. Shortly, I just downloaded your build with the applied patches and 
can confirm the patched Audacity works again (the project opens fine and no more 
assert '!ms_clipboard' failed in the terminal). My system is Testing amd64.


Thanks for your effort :-)

Max

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


Cadence - Was (Re: [SCM] cadence/master: update upload target)

2014-10-25 Thread Kaj Ailomaa
On Sat, Oct 25, 2014, at 09:45 PM, Kaj Ailomaa wrote:
 
 
 On Thu, May 9, 2013, at 09:45 PM, siret...@users.alioth.debian.org
 wrote:
  The following commit has been merged in the master branch:
  commit 0e545ce6a10dd59811b8ca6a15641badc43b42af
  Author: Reinhard Tartler siret...@tauware.de
  Date:   Thu May 9 21:45:00 2013 +0200
  
 
 
 What's left to do here?
 
 I'm still very new to Debian packaging. But, would be prepared to do
 something
 here. I have some contact with falktx also, in case it involves
 something upstream.

(sorry to post on two mail lists - just realized this might be the
better one to post to).

___
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 audacity_2.0.6-2_amd64.changes

2014-10-25 Thread Debian FTP Masters
audacity_2.0.6-2_amd64.changes uploaded successfully to localhost
along with the files:
  audacity_2.0.6-2.dsc
  audacity_2.0.6-2.debian.tar.xz
  audacity_2.0.6-2_amd64.deb
  audacity-data_2.0.6-2_all.deb
  audacity-dbg_2.0.6-2_amd64.deb

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


Processing of vlc_2.2.0~pre4-2_amd64.changes

2014-10-25 Thread Debian FTP Masters
vlc_2.2.0~pre4-2_amd64.changes uploaded successfully to localhost
along with the files:
  vlc_2.2.0~pre4-2.dsc
  vlc_2.2.0~pre4-2.debian.tar.xz
  libvlc-dev_2.2.0~pre4-2_amd64.deb
  libvlc5_2.2.0~pre4-2_amd64.deb
  libvlccore-dev_2.2.0~pre4-2_amd64.deb
  libvlccore8_2.2.0~pre4-2_amd64.deb
  vlc_2.2.0~pre4-2_amd64.deb
  vlc-data_2.2.0~pre4-2_all.deb
  vlc-dbg_2.2.0~pre4-2_amd64.deb
  vlc-nox_2.2.0~pre4-2_amd64.deb
  vlc-plugin-fluidsynth_2.2.0~pre4-2_amd64.deb
  vlc-plugin-jack_2.2.0~pre4-2_amd64.deb
  vlc-plugin-notify_2.2.0~pre4-2_amd64.deb
  vlc-plugin-sdl_2.2.0~pre4-2_amd64.deb
  vlc-plugin-svg_2.2.0~pre4-2_amd64.deb
  vlc-plugin-zvbi_2.2.0~pre4-2_amd64.deb
  vlc-plugin-samba_2.2.0~pre4-2_amd64.deb
  vlc-plugin-pulse_2.2.0~pre4-2_all.deb

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


audacity_2.0.6-2_amd64.changes ACCEPTED into unstable

2014-10-25 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 25 Oct 2014 23:42:05 +0200
Source: audacity
Binary: audacity audacity-data audacity-dbg
Architecture: source amd64 all
Version: 2.0.6-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Benjamin Drung bdr...@debian.org
Description:
 audacity   - fast, cross-platform audio editor
 audacity-data - fast, cross-platform audio editor (data)
 audacity-dbg - fast, cross-platform audio editor (debug)
Closes: 765341 765779
Changes:
 audacity (2.0.6-2) unstable; urgency=medium
 .
   [ Martin Steghöfer ]
   * Workaround for wx bug causing layout problems in recovery dialog.
   * Fix effect dialog segfault due to events before initialization and
 add workaround for wxWidgets bug Reentry in clipboard. (Closes: #765341)
   * Fix cursor recapturing in track panel sliders. (Closes: #765779)
Checksums-Sha1:
 b9a6bb8b0077655cff7bccd0647a0f8a51454894 2795 audacity_2.0.6-2.dsc
 19b420b79cf2ec36ac397f6a9fa5407ca77c9ca4 33816 audacity_2.0.6-2.debian.tar.xz
 fd5a906b24596660f164ec0a38ee659e605aa646 2830610 audacity_2.0.6-2_amd64.deb
 882c0f09bd86deeb3babf3ba859699dc8f3edf65 1380118 audacity-data_2.0.6-2_all.deb
 05b9aba381591a63b85b9fff8b97c59d6323371e 30286392 
audacity-dbg_2.0.6-2_amd64.deb
Checksums-Sha256:
 c794c3a951dd14f16d15a9ab0fa432a3b69c7d53ba57868944082105fc48c820 2795 
audacity_2.0.6-2.dsc
 ae174b294bc7f0c7c31f655adddfbf9dc84b1cf8c9a9a874accb03359589a2f2 33816 
audacity_2.0.6-2.debian.tar.xz
 67233d6f76a374084e4bcebed60f57e2b18eb60d933b6dd1347722b7d68c279a 2830610 
audacity_2.0.6-2_amd64.deb
 f154063afbb15e4b77231f6e731e2ffedb514ce446bd94a706ba899c1bcbda1b 1380118 
audacity-data_2.0.6-2_all.deb
 069f4aaca9e09e7b385305c9f69bd6f119fde4d2c893c2bcd91d4492387dc046 30286392 
audacity-dbg_2.0.6-2_amd64.deb
Files:
 c35f76f24ebed5ef4fc32349bdb6652e 2795 sound optional audacity_2.0.6-2.dsc
 3107428999fa39ae558182c92d6d1b53 33816 sound optional 
audacity_2.0.6-2.debian.tar.xz
 d02113f5e86d21c294c85fa80271bdef 2830610 sound optional 
audacity_2.0.6-2_amd64.deb
 e7d0fd5644be6263f66dac0806fcfc41 1380118 sound optional 
audacity-data_2.0.6-2_all.deb
 298ba95c3989c51bc470447156d1f025 30286392 debug extra 
audacity-dbg_2.0.6-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUTBsGAAoJEBWetcTvyHdM4mYP/iExDdSRa+l0hRLnH4b2ogKo
xTPD/FM2ov73ueFqyCLVPO4hrB6868GTjFUENPK1tLKWTUKHGN1H7L1asVYZCyNp
YQqFBmOwq+VgS1bsbZ5gNi/ahQCYxdBF5lUgYZJenpUOxUY0gjUbgrIplU0Y7pbe
dHCMaeG+dUlgWHNgJLTqc09iFtpU6weiCtvFctS6sL6MHjv5xWNwp2U4+0goniv0
jmzNyfcJBKW6TQ0DcVS+P8/u3cMScyTga7fGOwQvzXR89Hmg/fZd95Lqvl5scgHx
6HkztnophG0tYyPpgdZSknEOuHPoQAX1AklO6Z5wJIi6Azk8N/rTD3S2vi1j0Gih
W8VTo/dIwMQ8F/YPwS7+3/XW2HUsydzBYw851yk1OW7rkOn8losYCS1ERARGV466
j0juxfxlufO9iOaSLJ6gOO+FOrH65vDgGJRutuFIvYFho1lEViApmDYqY/hrEyPn
51gUY+JA9lvqZrZ9nfDvKsR90dorkVCGfeWZOjGLHkIm00LDl0VHXipmfZiavWTk
0cZvGmGQgtQ35TmIEOWT+hpui8UyUS2bnZT/qjcw8sOhxKt0JwR8zBh3/f8SHwFM
UmKHDTBkWm5yKfnXl1duEWjQSvg1nV81gAdgV4C9mVUCRPE8FcdIbPAuA+sgYJ0k
rm/g7cQrZvcj3gDwCqy6
=D53G
-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#765341: marked as done (audacity: crashed when playing selected audio: assert !ms_clipboard failed in wxClipboardSync)

2014-10-25 Thread Debian Bug Tracking System
Your message dated Sat, 25 Oct 2014 22:19:31 +
with message-id e1xi9gj-0001cc...@franck.debian.org
and subject line Bug#765341: fixed in audacity 2.0.6-2
has caused the Debian Bug report #765341,
regarding audacity: crashed when playing selected audio: assert !ms_clipboard 
failed in wxClipboardSync
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.)


-- 
765341: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=765341
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: audacity
Version: 2.0.6-1
Severity: important

Dear Maintainer,

I tried the new packaged version 2.0.6 today and ended up in the obove 
mentioned 
problem, which makes audacity nearly unusable. In detail:

First I opened an old audacity project and got an error/warning-window:
ASSERT INFO:
../src/gtk/clipbrd.cpp(71): assert !ms_clipboard failed in wxClipboardSync(): 
reentrancy in clipboard code

BACKTRACE:
[1] wxClipboard::DoIsSupported(wxDataFormat const)
[2] wxClipboard::IsSupported(wxDataFormat const)
[3] LabelTrack::IsTextClipSupported()
[4] AudacityProject::GetUpdateFlags()
[5] AudacityProject::UpdateMenus()
[6] AudacityProject::FixScrollbars()
[7] AudacityProject::HandleResize()
[8] AudacityProject::OnSize(wxSizeEvent)
[9] AudacityProject::OnShow(wxShowEvent)
[10] wxAppConsoleBase::CallEventHandler(wxEvtHandler*, wxEventFunctor, 
wxEvent) const
[11] wxEvtHandler::ProcessEventIfMatchesId(wxEventTableEntryBase const, 
wxEvtHandler*, wxEvent)
[12] wxEventHashTable::HandleEvent(wxEvent, wxEvtHandler*)
[13] wxEvtHandler::TryHereOnly(wxEvent)
[14] wxEvtHandler::ProcessEventLocally(wxEvent)
[15] wxEvtHandler::ProcessEvent(wxEvent)
[16] wxEvtHandler::SafelyProcessEvent(wxEvent)
[17] wxTopLevelWindowGTK::GTKUpdateDecorSize(wxTopLevelWindowGTK::DecorSize 
const)
[18] g_main_context_dispatch
[19] g_main_context_iteration
[20] gtk_main_iteration
[21] wxGUIEventLoop::YieldFor(long)
[22] wxClipboard::DoIsSupported(wxDataFormat const)
[23] wxClipboard::IsSupported(wxDataFormat const)
[24] LabelTrack::IsTextClipSupported()
[25] AudacityProject::GetUpdateFlags()
[26] AudacityProject::UpdateMenus()
[27] AudacityProject::InitialState()
[28] AudacityProject::OpenFile(wxString, bool)
[29] AudacityApp::OnInit()
[30] wxEntry(int, wchar_t**)
[31] main
[32] __libc_start_main
[33] _start 

I clicked continue, the project opened, I could play sound in the project, I 
saved the project. Then 
I played a little bit arround, exspecially tried the new lv2-plugin option, 
which crashed audacity:

Debug: DirManager: Created new instance.
Expression 'stream-playback.pcm' failed in 'src/hostapi/alsa/pa_linux_alsa.c', 
line: 4611
Expression 'stream-playback.pcm' failed in 'src/hostapi/alsa/pa_linux_alsa.c', 
line: 4611
Expression 'stream-playback.pcm' failed in 'src/hostapi/alsa/pa_linux_alsa.c', 
line: 4611
Speicherzugriffsfehler (Speicherabzug geschrieben)

I newly started audacity with the same project, got a revovery-message, clicked 
recover (which was'nt 
easy, because the button was that thin, that is was nearly unseeable), saved 
the project again. From now 
on I could play the project,  but when I selected a piece of audio and wanted 
to play 
this selection, the program crashed.

I tried starting audacity out of a xterm and got (entire output since starting 
the program):

(Audacity:6091): Gtk-WARNING **: gtk_disable_setlocale() must be called before 
gtk_init()
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
ALSA lib pcm_route.c:947:(find_matching_chmap) Found no matching channel map
ALSA lib pcm_route.c:947:(find_matching_chmap) Found no matching channel map
ALSA lib pulse.c:243:(pulse_connect) PulseAudio: Unable to connect: Verbindung 
verweigert

ALSA lib pulse.c:243:(pulse_connect) PulseAudio: Unable to connect: Verbindung 
verweigert

Cannot connect to server socket err = Datei oder Verzeichnis nicht gefunden
Cannot connect to server request channel
jack server is not running or cannot be started
error: failed to expand CURIE `pprops:hasStrictBounds'
error: attempt to add quad with NULL field
error: failed to expand CURIE `pprops:hasStrictBounds'
error: attempt to add quad with NULL field
error: failed to expand CURIE `units:unit'
error: failed to expand CURIE `units:db'
error: attempt to add quad with NULL field
error: failed to expand CURIE `units:conversion'
error: attempt to add quad with NULL field
error: failed to expand CURIE `units:to'
error: failed to expand 

Bug#765779: marked as done (audacity: An assertion failed! when changing track volume or panning)

2014-10-25 Thread Debian Bug Tracking System
Your message dated Sat, 25 Oct 2014 22:19:31 +
with message-id e1xi9gj-0001ci...@franck.debian.org
and subject line Bug#765779: fixed in audacity 2.0.6-2
has caused the Debian Bug report #765779,
regarding audacity: An assertion failed! when changing track volume or panning
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.)


-- 
765779: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=765779
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: audacity
Version: 2.0.6-1
Severity: normal

Dear Maintainer,

I've opened an audio file in Audacity today, and wanted to adjust the
panning to a track and it immediately popped up a window saying An
ssertion failed!, after which this was layed out:

../src/common/wincmn.cpp(3271): assert
!wxMouseCapture::IsInCaptureStack(this) failed in CaptureMouse():
Recapturing the mouse in the same window?

Here's a screenshot: https://i.imgur.com/9tBvG58.png

This leaves me unable to click on anything, as the clicks aren't registered
by the OS, the cursor works fine however (I can move it around).
If I try to select Continue on that window, I am finally able to click,
but no matter what I click in Audacity, it causes it to pop up that window,
and if I select the Continue button, Audacity crashes with a segfault.

Here's the backtrace dump:
___

ASSERT INFO:
../src/common/wincmn.cpp(3271): assert
!wxMouseCapture::IsInCaptureStack(this) failed in CaptureMouse():
Recapturing the mouse in the same window?

BACKTRACE:
[1] wxWindowBase::CaptureMouse()
[2] LWSlider::OnMouseEvent(wxMouseEvent)
[3] TrackPanel::HandleSliders(wxMouseEvent, bool)
[4] TrackPanel::GainFunc(Track*, wxRect, wxMouseEvent, int, int)
[5] TrackPanel::HandleLabelClick(wxMouseEvent)
[6] TrackPanel::HandleTrackSpecificMouseEvent(wxMouseEvent)
[7] TrackPanel::OnMouseEvent(wxMouseEvent)
[8] wxAppConsoleBase::HandleEvent(wxEvtHandler*, void
(wxEvtHandler::*)(wxEvent), wxEvent) const
[9] wxAppConsoleBase::CallEventHandler(wxEvtHandler*, wxEventFunctor,
wxEvent) const
[10] wxEvtHandler::ProcessEventIfMatchesId(wxEventTableEntryBase const,
wxEvtHandler*, wxEvent)
[11] wxEventHashTable::HandleEvent(wxEvent, wxEvtHandler*)
[12] wxEvtHandler::TryHereOnly(wxEvent)
[13] wxEvtHandler::ProcessEventLocally(wxEvent)
[14] wxEvtHandler::ProcessEvent(wxEvent)
[15] wxEvtHandler::SafelyProcessEvent(wxEvent)
[16] wxWindowBase::HandleWindowEvent(wxEvent) const
[17] wxWindow::GTKProcessEvent(wxEvent) const
[18] g_closure_invoke
[19] g_signal_emit_valist
[20] g_signal_emit
[21] gtk_propagate_event
[22] gtk_main_do_event
[23] g_main_context_dispatch
[24] g_main_loop_run
[25] gtk_main
[26] wxGUIEventLoop::DoRun()
[27] wxEventLoopBase::Run()
[28] wxAppConsoleBase::MainLoop()
[29] wxAppConsoleBase::OnRun()
[30] wxAppBase::OnRun()
[31] wxEntry(int, wchar_t**)
[32] wxEntry(int, char**)
[33] main
[34] __libc_start_main
[35] _start




  And here's what has been shown on stdout:



** (Audacity:5439): CRITICAL **: murrine_style_draw_box: assertion 'height
= -1' failed

** (Audacity:5439): CRITICAL **: murrine_style_draw_focus: assertion
'height = -1' failed
../src/common/wincmn.cpp(3271): assert
!wxMouseCapture::IsInCaptureStack(this) failed in CaptureMouse():
Recapturing the mouse in the same window?
../src/common/wincmn.cpp(3271): assert
!wxMouseCapture::IsInCaptureStack(this) failed in CaptureMouse():
Recapturing the mouse in the same window?
Segmentation fault

_

Also, the Crash Recovery window doesn't look right:
https://i.imgur.com/vqvG63d.png
Does anyone know is this is just at my end?


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 3.16-3.dmz.2-liquorix-686 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages audacity depends on:
ii  audacity-data 2.0.6-1
ii  libasound21.0.28-1
ii  libavcodec56  6:11-1
ii  libavformat56 6:11-1
ii  libavutil54   6:11-1
ii  libc6 2.19-11
ii  libexpat1 2.1.0-6
ii  libflac++61.3.0-2
ii  libflac8  1.3.0-2
ii  libgcc1   1:4.9.1-16
ii  libglib2.0-0  2.42.0-2
ii  libid3tag00.15.1b-11
ii  libmad0   0.15.1b-8
ii  libmp3lame0   3.99.5+repack1-5
ii  

vlc_2.2.0~pre4-2_amd64.changes ACCEPTED into unstable

2014-10-25 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 26 Oct 2014 00:02:11 +0200
Source: vlc
Binary: libvlc-dev libvlc5 libvlccore-dev libvlccore8 vlc vlc-data vlc-dbg 
vlc-nox vlc-plugin-fluidsynth vlc-plugin-jack vlc-plugin-notify vlc-plugin-sdl 
vlc-plugin-svg vlc-plugin-zvbi vlc-plugin-samba vlc-plugin-pulse
Architecture: source amd64 all
Version: 2.2.0~pre4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Sebastian Ramacher sramac...@debian.org
Description:
 libvlc-dev - development files for libvlc
 libvlc5- multimedia player and streamer library
 libvlccore-dev - development files for libvlccore
 libvlccore8 - base library for VLC and its modules
 vlc- multimedia player and streamer
 vlc-data   - Common data for VLC
 vlc-dbg- debugging symbols for vlc
 vlc-nox- multimedia player and streamer (without X support)
 vlc-plugin-fluidsynth - FluidSynth plugin for VLC
 vlc-plugin-jack - Jack audio plugins for VLC
 vlc-plugin-notify - LibNotify plugin for VLC
 vlc-plugin-pulse - transitional dummy package for vlc
 vlc-plugin-samba - Samba plugin for VLC
 vlc-plugin-sdl - SDL video and audio output plugin for VLC
 vlc-plugin-svg - SVG plugin for VLC
 vlc-plugin-zvbi - VBI teletext plugin for VLC
Closes: 764294
Changes:
 vlc (2.2.0~pre4-2) unstable; urgency=medium
 .
   * Revert Disable FreeRDP plugin. (Closes: #764294)
Checksums-Sha1:
 c31c6d2b1b7ebaf7da08bdb7c10ac1f51e239b27 5417 vlc_2.2.0~pre4-2.dsc
 3e5437286e29f7650233f8f3f755402b517708dd 57468 vlc_2.2.0~pre4-2.debian.tar.xz
 53c3311480f96b9fa28567e0605b32336fa26f72 26634 
libvlc-dev_2.2.0~pre4-2_amd64.deb
 efb9ca757c023531dd0986e3638be1585a6edfbd 46860 libvlc5_2.2.0~pre4-2_amd64.deb
 847de9c11e455af2052126c205b5c4a0db11f85a 116952 
libvlccore-dev_2.2.0~pre4-2_amd64.deb
 badf65262976ee0a05c5459ae23ef9308abcf0f3 394084 
libvlccore8_2.2.0~pre4-2_amd64.deb
 831db90d6f6e532cc3bd726c9f1acb0a916ed914 1494860 vlc_2.2.0~pre4-2_amd64.deb
 cdec53d8a1b22ae5ab500f7cd4b2a7291f3f0452 5291214 vlc-data_2.2.0~pre4-2_all.deb
 da3519536d9ec4e0b8ee7a2b55c6807ab4aa53cd 24306806 
vlc-dbg_2.2.0~pre4-2_amd64.deb
 e95864d24676e5f9e54ee8da7d925f2c8752ad07 2624794 vlc-nox_2.2.0~pre4-2_amd64.deb
 d3338a09c8200fbdf12624a3d6498cbd8de958a4 5672 
vlc-plugin-fluidsynth_2.2.0~pre4-2_amd64.deb
 3e5c38816cd48ce52b1c8faa0c71611803773b0b 10926 
vlc-plugin-jack_2.2.0~pre4-2_amd64.deb
 7b21fca867ea6a017ad832e4f16117a240636d08 5390 
vlc-plugin-notify_2.2.0~pre4-2_amd64.deb
 edee5ef0376d48a142a425909cb2dab164c0f393 8078 
vlc-plugin-sdl_2.2.0~pre4-2_amd64.deb
 9f31b1479e62b07f5ffd520151aeafe44ba5bb0d 5994 
vlc-plugin-svg_2.2.0~pre4-2_amd64.deb
 96445ad724aba9364e80d8bb6fcf2b162ff6ae3f 11104 
vlc-plugin-zvbi_2.2.0~pre4-2_amd64.deb
 39731c706c9ccbbc5d6559e827a0d8e5e963d94e 4906 
vlc-plugin-samba_2.2.0~pre4-2_amd64.deb
 b7e8e1eb0c5a635f176bb97a89b68f40ef706e41 918 
vlc-plugin-pulse_2.2.0~pre4-2_all.deb
Checksums-Sha256:
 68e6132aa793d231d2e252e229c737b126ca32cfe94ca6502097903c1dde2ef1 5417 
vlc_2.2.0~pre4-2.dsc
 a46928a2b7475eec1608cd4414c1677f31e345fb2601683cd62461539757ff7d 57468 
vlc_2.2.0~pre4-2.debian.tar.xz
 9b444816ab71e38b62f31329b20cae19f630fce90c8dece2b53c087863a25d35 26634 
libvlc-dev_2.2.0~pre4-2_amd64.deb
 16771b1c4e777bb13a54aab197d45927e09ee608dc2cd3bbbc0d614aec8137de 46860 
libvlc5_2.2.0~pre4-2_amd64.deb
 d63c4fcc326bf7a0e547db782e909256bd2bfd217eb833f5ba89708599deb4b4 116952 
libvlccore-dev_2.2.0~pre4-2_amd64.deb
 279c7ad1e3384ffee20752f36ef6be3e52aa0e0ceda92fcd15d1a412cc8264e6 394084 
libvlccore8_2.2.0~pre4-2_amd64.deb
 256c6a16f578ff3a9d45a2650a12e49b0c1888ce4dd97a1c18952b785e75f956 1494860 
vlc_2.2.0~pre4-2_amd64.deb
 eada8bc955d240d35256dbbab406aec30f4305854f5da9fd122274e6e904 5291214 
vlc-data_2.2.0~pre4-2_all.deb
 4fe3d63b6692bf170c6c75bae33544ca9b80ca51fc273f71798bfee12206059c 24306806 
vlc-dbg_2.2.0~pre4-2_amd64.deb
 2fa359316c5902e2d048d252344e9120fe41723343e0124361f1a934d45894f3 2624794 
vlc-nox_2.2.0~pre4-2_amd64.deb
 ad968ddfb8c3456182b0873d98575ea10f0354fe43c734b1630c3db0dfbc8982 5672 
vlc-plugin-fluidsynth_2.2.0~pre4-2_amd64.deb
 c87d23dc734f6edf6bdc0ab080d77a6a59266a56b5a1198e033538b3b02f3357 10926 
vlc-plugin-jack_2.2.0~pre4-2_amd64.deb
 2c4a388574f6b181ddaae0443c486e4e1226c176d41dd9044cf9456f5c7bc588 5390 
vlc-plugin-notify_2.2.0~pre4-2_amd64.deb
 63a0e7e83ad52a13eb7592a345c1d1314d7e96dc2f7c4be7d4014951171a6197 8078 
vlc-plugin-sdl_2.2.0~pre4-2_amd64.deb
 40718580bc0ad2934e3bedcf3461a456c324749edfba2ef5c43a52b2017f244c 5994 
vlc-plugin-svg_2.2.0~pre4-2_amd64.deb
 d125682baf3076c59c41938a752be9a0bfd576bf00ad13265a99aff099d0cbd8 11104 
vlc-plugin-zvbi_2.2.0~pre4-2_amd64.deb
 9eeb05e0267bbe549fb278c9add6d07e87cab53237854c4e1948dcb57f32236c 4906 
vlc-plugin-samba_2.2.0~pre4-2_amd64.deb
 177b176dce73ea8b8ab1be17ee8239753d9ffab2bd1fb8646eb61e0f4624b60b 918 
vlc-plugin-pulse_2.2.0~pre4-2_all.deb
Files:
 

Bug#764294: marked as done (vlc: FreeRDP support is missing)

2014-10-25 Thread Debian Bug Tracking System
Your message dated Sat, 25 Oct 2014 22:25:03 +
with message-id e1xi9lf-0004w1...@franck.debian.org
and subject line Bug#764294: fixed in vlc 2.2.0~pre4-2
has caused the Debian Bug report #764294,
regarding vlc: FreeRDP support is missing
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.)


-- 
764294: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=764294
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: vlc
Version: 2.2.0~pre3-1
Severity: important

FreeRDP support is missing in version 2.2.0~pre3-1, as it has been
temporarily disabled in version 2.2.0~pre3-1:

| * Disable FreeRDP plugin as requested by the Release Team because FreeRDP is
| currently broken. This allows us to finish the libav and libvlccore
| transition. As soon as FreeRDP is fixed, this change can be reverted:
| - debian/control: Remove libfreerdp-dev from Build-Depends.
| - debian/rules: Build with --disable-freerdp.
| - debian/vlc.install: Do not install the FreeRDP plugin.

The transitions are now finished, so please re-enable this plugin.

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

Kernel: Linux 3.14-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages vlc depends on:
ii  dpkg  1.17.10
ii  fonts-freefont-ttf20120503-4
ii  libaa11.4p5-42
ii  libavcodec55  6:10.1-1
ii  libavutil53   6:10.1-1
ii  libc6 2.19-9
ii  libcaca0  0.99.beta19-2
ii  libfreetype6  2.5.2-1
ii  libfribidi0   0.19.6-1
ii  libgcc1   1:4.9.0-9
ii  libgl1-mesa-glx [libgl1]  10.1.4-1
ii  libice6   2:1.0.8-2
ii  libqtcore44:4.8.6+dfsg-1
ii  libqtgui4 4:4.8.6+dfsg-1
ii  libsdl-image1.2   1.2.12-5+b3
ii  libsdl1.2debian   1.2.15-9
ii  libsm62:1.2.1-2
ii  libstdc++64.9.0-9
ii  libtar0   1.2.20-4
ii  libva-x11-1   1.3.1-3
ii  libva11.3.1-3
ii  libvlccore7   2.1.4-1+b2
ii  libx11-6  2:1.6.2-2
ii  libxcb-composite0 1.10-3
ii  libxcb-keysyms1   0.3.9-1
ii  libxcb-randr0 1.10-3
ii  libxcb-render01.10-3
ii  libxcb-shape0 1.10-3
ii  libxcb-shm0   1.10-3
ii  libxcb-xfixes01.10-3
ii  libxcb-xv01.10-3
ii  libxcb1   1.10-3
ii  libxext6  2:1.3.2-1
ii  libxinerama1  2:1.1.3-1
ii  libxpm4   1:3.5.10-1
ii  vlc-nox   2.1.4-1+b2
ii  zlib1g1:1.2.8.dfsg-1

Versions of packages vlc recommends:
pn  vlc-plugin-notify  none
ii  vlc-plugin-pulse   2.1.4-1+b2
ii  xdg-utils  1.1.0~rc1+git20111210-7.1

Versions of packages vlc suggests:
pn  videolan-doc  none

-- no debconf information
---End Message---
---BeginMessage---
Source: vlc
Source-Version: 2.2.0~pre4-2

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

Debian distribution maintenance software
pp.
Sebastian Ramacher sramac...@debian.org (supplier of updated vlc 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, 26 Oct 2014 00:02:11 +0200
Source: vlc
Binary: libvlc-dev libvlc5 libvlccore-dev libvlccore8 vlc vlc-data vlc-dbg 
vlc-nox vlc-plugin-fluidsynth vlc-plugin-jack vlc-plugin-notify vlc-plugin-sdl 
vlc-plugin-svg vlc-plugin-zvbi vlc-plugin-samba vlc-plugin-pulse
Architecture: source amd64 all
Version: 2.2.0~pre4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Sebastian Ramacher sramac...@debian.org
Description:
 libvlc-dev - development files for libvlc
 libvlc5- multimedia