Processed: tagging as pending bugs that are closed by packages in NEW

2013-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Sunday 8 December  07:03:15 UTC 2013
> # Tagging as pending bugs that are closed by packages in NEW
> # http://ftp-master.debian.org/new.html
> #
> # Source package in NEW: inputplug
> tags 729736 + pending
Bug #729736 [wnpp] ITP: inputplug -- XInput event monitor
Added tag(s) pending.
> # Source package in NEW: r-cran-locfit
> tags 731599 + pending
Bug #731599 [wnpp] ITP: r-cran-locfit -- GNU R local regression, likelihood and 
density estimation
Added tag(s) pending.
> # Source package in NEW: snapper
> tags 715404 + pending
Bug #715404 [wnpp] ITP: snapper -- Linux filesystem snapshot management tool
Added tag(s) pending.
> # Source package in NEW:  href="http://packages.qa.debian.org/ffms2";>ffms2
> tags 721940 + pending
Bug #721940 [src:ffms2] ffms2: new upstream version available
Added tag(s) pending.
> # Source package in NEW:  href="http://packages.qa.debian.org/ffms2";>ffms2
> tags 731167 + pending
Bug #731167 [libffms2-2] libffms2-2: please provide symbols file
Added tag(s) pending.
> # Source package in NEW:  href="http://packages.qa.debian.org/ffms2";>ffms2
> tags 731540 + pending
Bug #731540 [libffms2-2] libffms2-2: FFMS_GetAudioProperties does not work 
correctly
Added tag(s) pending.
> # Source package in NEW: whitedb
> tags 731642 + pending
Bug #731642 [wnpp] ITP: whitedb -- lightweight NoSQL database library
Added tag(s) pending.
> # Source package in NEW:  href="http://packages.qa.debian.org/python-json-patch";>python-json-patch
> tags 717916 + pending
Bug #717916 [python-json-patch] python-json-patch: package name does not 
conform to python policy
Added tag(s) pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
715404: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=715404
717916: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=717916
721940: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=721940
729736: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=729736
731167: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731167
731540: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731540
731599: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731599
731642: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731642
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

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


Re: getting openni2 into Debian

2013-12-07 Thread Hans-Christoph Steiner


On 11/25/2013 06:52 AM, Hauke Wintjen wrote:
> 
>> Hans-Christoph Steiner  hat am 23. November 2013 um 18:43 
>> geschrieben:
>>
>>
>>
>>
>> On 11/22/2013 05:55 AM, Jochen Sprickerhof wrote:
>>> Hi,
>>>
>>> * Hauke Wintjen  [2013-11-21 09:30]:
> Hans-Christoph Steiner  hat am 20. November 2013 um 20:13 
> geschrieben:
> Also, what tool are you building it with? I couldn't get it to build with
> either dpkg-buildpackage or git-buildpackage.

 I have written in the wiki of my fork:
 git-buildpackage --git-no-sign-tags --git-ignore-new -us -uc
 and it builds packages for me.
>>>
>>> I think I've found the root of this. Hauke added new upstream tags
>>> (2.3.0.14.3). I would propose to reorganize the repo and only build
>>> Debian packages based on upstream tags. @Hans-Christoph, did you set up
>>> a repo on git.debian.org already, or could you do it, so we can clean
>>> this up?
>>>
>>> Cheers Jochen
>>
>> Now that alioth is back up and running, I set it up as 'openni2'
>> http://anonscm.debian.org/gitweb/?p=pkg-multimedia/openni2.git
>>
>  
> Great to hear that!
>  
> 
>> Read-only is here:
>> https://alioth.debian.org/anonscm/git/pkg-multimedia/openni2.git
>>
>> Read/write is here:
>> git+ssh://git.debian.org/git/pkg-multimedia/openni2.git
>  
> Ok, should i push the repo inside that?
>
>> Things have changed a bit with alioth, its a new server so it might have new
>> SSH keys for you. I see the RSA key with the host key fingerprint of:
>> d7:0b:26:5c:7a:5d:56:40:a9:e0:5d:f4:e1:70:88:bf
>  
> Ok, i will try to login.
>  
> Created just an account with hcw70-guest on alioth.
>>
>> I highly recommend using the git-buildpackage layout, and I can help with the
>> process of converting the current repo to a git-buildpackage style repo.
>  
> Ok, could you please provide some info on this? I thought this is already 
> done that way with my repo. Whats missing / wrong?

I set up the openni2 repo in pkg-multimedia git-buildpackage style.  It should
include all of the work in your 2.2.0.33 version of the package.

These are two good overviews of this workflow:
https://wiki.debian.org/PackagingWithGit
https://wiki.debian.org/DebianMultimedia/DevelopPackaging

This covers how to include the upstream git history in the package's git repo:
http://www.eyrie.org/~eagle/journal/2013-04/001.html

Here's a way to set up with the full git-buildpackage style with the upstream
git repo included:

$ sudo apt-get install git-buildpackage pristine-tar
$ gbp-clone git+ssh://git.debian.org/git/pkg-multimedia/openni2.git
$ cd openni2
$ git remote add upstream https://github.com/OpenNI/OpenNI2
$ git fetch upstream

Now you can build the package using git-buildpackage, and it'll also run all
sorts of extra checks on it, like lintian:

$ git-buildpackage

For including a new release, you can both import the pristine tarball from
github, and tie it to the upstream git history:

$ wget https://github.com/OpenNI/OpenNI2/archive/7bef8f639e4d6.tar.gz
$ cd openni2
$ git tag 2.2.0.33 7bef8f639e4d6
$ git-import-orig --upstream-vcs-tag=2.2.0.33 ../7bef8f639e4d6.tar.gz

I didn't add your 'develop' branch, but you can add that as well to this mix
as well.

In terms of getting it uploaded to Debian, you need to update the
debian/copyright with all copyright info for all files included in the
git/tarball.  checkout the openni package for a good example.

There is also a syntax error in your debian/changelog, use the program 'dch'
to edit it, and it'll automatically handle the syntax for you.

I pushed your package to my OpenNI PPA for anyone to try, let's hope it builds:
https://launchpad.net/~eighthave/+archive/openni/+packages

.hc

>>
>> Hauke, were you able to request an account on alioth yet? I forget where that
>> stands.
>  
> Yes, see above.
> 
>>
>> .hc
>>
>  
>  
> Kind regards
>  
> Hauke
>  
> 



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

Bug#731513: vlc: FTBFS: freetype/ftsynth.h: No such file or directory

2013-12-07 Thread Mateusz Łukasik

W dniu 07.12.2013 o 23:21 Benjamin Drung  pisze:


forwarded 731513 https://trac.videolan.org/vlc/ticket/10019
tags 731513 + pending
thanks

On Fr, 2013-12-06 at 09:41 +0100, Roland Stigge wrote:

vlc FTBFS with new freetype 2.5.1-1 like this:

...
../../doltlibtool  --tag=CC   --mode=compile gcc -std=gnu99  
-DHAVE_CONFIG_H -I. -I../..   
-DMODULE_NAME=$(p="libfreetype_plugin_la-freetype.lo"; p="${p##*/}";  
p="${p#lib}"; echo "${p%_plugin*}")  
-DMODULE_NAME_IS_$(p="libfreetype_plugin_la-freetype.lo"; p="${p##*/}";  
p="${p#lib}"; echo "${p%_plugin*}")  
-DMODULE_STRING=\"$(p="libfreetype_plugin_la-freetype.lo";  
p="${p##*/}"; p="${p#lib}"; echo "${p%_plugin*}")\" -D__PLUGIN__  
-I/usr/include/freetype2   -DHAVE_FONTCONFIG -I/usr/include/fribidi
-DHAVE_FRIBIDI -I../../include -I../../include -D_FORTIFY_SOURCE=2   -g  
-O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat  
-Werror=format-security -mtune=8548 -Wall -Wextra -Wsign-compare  
-Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings  
-Wmissing-prototypes -Wvolatile-register-var  
-Werror-implicit-function-declaration -pipe -fvisibility=hidden  
-ffast-math -funroll-loops -fomit-frame-pointer -c -o  
libfreetype_plugin_la-freetype.lo `test -f 'freetype.c' || echo  
'./'`freetype.c
freetype.c:93:30: fatal error: freetype/ftsynth.h: No such file or  
directory

compilation terminated.
make[5]: *** [libfreetype_plugin_la-freetype.lo] Error 1
make[5]: Leaving directory `/«PKGBUILDDIR»/modules/text_renderer'
make[4]: *** [all] Error 2
make[4]: Leaving directory `/«PKGBUILDDIR»/modules/text_renderer'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/«PKGBUILDDIR»/modules'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/«PKGBUILDDIR»'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/«PKGBUILDDIR»'
dh_auto_build: make -j1 returned exit code 2
make: *** [build-arch] Error 2
...

Attaching a patch that fixes this by considering the new location of a  
header

file.


I detected this issue a while ago and filed an upstream bug:
https://trac.videolan.org/vlc/ticket/10019

I probably will wait until the next upstream release is shipped with the
patch included, unless it's urgent to fix the build failure sooner?!

Temporary I [add patch][1] on git if someone really needs rebuild from  
sources.


[1]:  
http://anonscm.debian.org/gitweb/?p=pkg-multimedia/vlc.git;a=blob;f=debian/patches/ftbfs_freetype.patch;h=c38e606896244b4e50edb971fe959c2d0eb7c2a6;hb=HEAD


___
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#731596: vlc: VLC skipping on some FLAC files

2013-12-07 Thread Benjamin Drung
forwarded 731596 https://trac.videolan.org/vlc/ticket/9863
tags 731596 + pending
thanks

On Sa, 2013-12-07 at 11:56 +0100, Ingo Saitz wrote:
> Package: vlc
> Version: 2.1.1-1
> Severity: normal
> Tags: patch
> 
> 
> VLC produces an audible skipping on some FLAC files. See upstream 
> Bug 9863 for an example and patch. Applying commit
> a5a87c3c662a3f733d1b7a49b8cf5c5f595aed41 which should be included in
> VLC 2.1.2 fixes this problem.
> 
> Bug: https://trac.videolan.org/vlc/ticket/9863
> Fix: 
> http://git.videolan.org/?p=vlc.git;a=commitdiff;h=a5a87c3c662a3f733d1b7a49b8cf5c5f595aed41

Would it be sufficient to wait for the next upstream release to ship
this fix?

-- 
Benjamin Drung
Debian & Ubuntu Developer

___
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#731596: vlc: VLC skipping on some FLAC files

2013-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 731596 https://trac.videolan.org/vlc/ticket/9863
Bug #731596 [vlc] vlc: VLC skipping on some FLAC files
Set Bug forwarded-to-address to 'https://trac.videolan.org/vlc/ticket/9863'.
> tags 731596 + pending
Bug #731596 [vlc] vlc: VLC skipping on some FLAC files
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
731596: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731596
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#731513: vlc: FTBFS: freetype/ftsynth.h: No such file or directory

2013-12-07 Thread Benjamin Drung
forwarded 731513 https://trac.videolan.org/vlc/ticket/10019
tags 731513 + pending
thanks

On Fr, 2013-12-06 at 09:41 +0100, Roland Stigge wrote:
> vlc FTBFS with new freetype 2.5.1-1 like this:
> 
> ...
> ../../doltlibtool  --tag=CC   --mode=compile gcc -std=gnu99 -DHAVE_CONFIG_H 
> -I. -I../..  -DMODULE_NAME=$(p="libfreetype_plugin_la-freetype.lo"; 
> p="${p##*/}"; p="${p#lib}"; echo "${p%_plugin*}") 
> -DMODULE_NAME_IS_$(p="libfreetype_plugin_la-freetype.lo"; p="${p##*/}"; 
> p="${p#lib}"; echo "${p%_plugin*}") 
> -DMODULE_STRING=\"$(p="libfreetype_plugin_la-freetype.lo"; p="${p##*/}"; 
> p="${p#lib}"; echo "${p%_plugin*}")\" -D__PLUGIN__ -I/usr/include/freetype2   
> -DHAVE_FONTCONFIG -I/usr/include/fribidi   -DHAVE_FRIBIDI -I../../include 
> -I../../include -D_FORTIFY_SOURCE=2   -g -O2 -fstack-protector 
> --param=ssp-buffer-size=4 -Wformat -Werror=format-security -mtune=8548 -Wall 
> -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast 
> -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var 
> -Werror-implicit-function-declaration -pipe -fvisibility=hidden -ffast-math 
> -funroll-loops -fomit-frame-pointer -c -o libfreetype_plugin_la-freetype.lo 
> `test -f 'freetype.c' || echo './'`freetype.c
> freetype.c:93:30: fatal error: freetype/ftsynth.h: No such file or directory
> compilation terminated.
> make[5]: *** [libfreetype_plugin_la-freetype.lo] Error 1
> make[5]: Leaving directory `/«PKGBUILDDIR»/modules/text_renderer'
> make[4]: *** [all] Error 2
> make[4]: Leaving directory `/«PKGBUILDDIR»/modules/text_renderer'
> make[3]: *** [all-recursive] Error 1
> make[3]: Leaving directory `/«PKGBUILDDIR»/modules'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/«PKGBUILDDIR»'
> make[1]: *** [all] Error 2
> make[1]: Leaving directory `/«PKGBUILDDIR»'
> dh_auto_build: make -j1 returned exit code 2
> make: *** [build-arch] Error 2
> ...
> 
> Attaching a patch that fixes this by considering the new location of a header
> file.

I detected this issue a while ago and filed an upstream bug:
https://trac.videolan.org/vlc/ticket/10019

I probably will wait until the next upstream release is shipped with the
patch included, unless it's urgent to fix the build failure sooner?!

-- 
Benjamin Drung
Debian & Ubuntu Developer

___
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#731513: vlc: FTBFS: freetype/ftsynth.h: No such file or directory

2013-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 731513 https://trac.videolan.org/vlc/ticket/10019
Bug #731513 [src:vlc] vlc: FTBFS: freetype/ftsynth.h: No such file or directory
Set Bug forwarded-to-address to 'https://trac.videolan.org/vlc/ticket/10019'.
> tags 731513 + pending
Bug #731513 [src:vlc] vlc: FTBFS: freetype/ftsynth.h: No such file or directory
Added tag(s) pending.
> thanks
Stopping processing here.

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


ffms2_2.19-1_amd64.changes is NEW

2013-12-07 Thread Debian FTP Masters
binary:libffms2-3 is NEW.

Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

___
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 ffms2_2.19-1_amd64.changes

2013-12-07 Thread Debian FTP Masters
ffms2_2.19-1_amd64.changes uploaded successfully to localhost
along with the files:
  ffms2_2.19-1.dsc
  ffms2_2.19.orig.tar.gz
  ffms2_2.19-1.debian.tar.gz
  libffms2-3_2.19-1_amd64.deb
  ffmsindex_2.19-1_amd64.deb
  libffms2-dev_2.19-1_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


ffms2_2.19-1_amd64.changes REJECTED

2013-12-07 Thread Paul Richards Tagliamonte

13:59 < Sebastinas> paultag: In any case, could you please reject ffms2 from 
NEW. d/copyright is not finished.


Done!

===

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


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


Bug#711795: gnome-mplayer: Screen turns off (energy-save) while watching video

2013-12-07 Thread Sebastian Ramacher
[Please keep the bug in CC.]

On 2013-12-07 19:03:43, Marco wrote:
> No power manager. I went back to the previous version of gnome-mplayer, and
> the bug described doesn't happen.
> 
> The thing is, my screen goes into Energy Save Mode after 10 minutes of
> inactivity. I don't how to change this settings, because I don't have
> xscreensaver installed, or any other power manager I'm aware of. xset
> doesn't do anything.
> 
> But that's not the case. The thing is, gnome-mplayer was able to prevent
> this while I was watching a video.

hmm, do you have xdg-utils installed? Could you also attach a log from
running gnome-mplayer --verbose with the non-working version?

Regards
-- 
Sebastian Ramacher


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

Processed: Re: Bug#711795: gnome-mplayer: Screen turns off (energy-save) while watching video

2013-12-07 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + moreinfo
Bug #711795 [gnome-mplayer] gnome-mplayer: Screen turns off (energy-save) while 
watching video
Added tag(s) moreinfo.

-- 
711795: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711795
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#711795: gnome-mplayer: Screen turns off (energy-save) while watching video

2013-12-07 Thread Sebastian Ramacher
Control: tags -1 + moreinfo

Hi Marco,

On 2013-06-09 18:22:41, Marco wrote:
> Watching a fullscreen video should keep the screen on the whole time, 
> however, since the update the screen turns off after 10 minutes of inactivity 
> (monitor goes into "Energy Save" mode).
> If it helps, my DE is XFCE 4.10, and I don't have xscreensaver installed.

Sorry, I missed this one somehow. Could you tell me a bit more about
environment? Are you running xfce4-power-manager? Is any other power
manager running?

Regards
-- 
Sebastian Ramacher


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

You have reached the storage limit on your mailbox

2013-12-07 Thread Orfinger, Sarah A
 
 
You have reached the storage limit on your mailbox.
You will not be able to send or receive new mail until you upgrade your email 
account quotas.


Copy or click the link below and fill out the email form upgrade.
https://secure.mailjol.net/allforms/u/b2144dbb.php


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

ffms2_2.19-1_amd64.changes is NEW

2013-12-07 Thread Debian FTP Masters
binary:libffms2-3 is NEW.

Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

___
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 ffms2_2.19-1_amd64.changes

2013-12-07 Thread Debian FTP Masters
ffms2_2.19-1_amd64.changes uploaded successfully to localhost
along with the files:
  ffms2_2.19-1.dsc
  ffms2_2.19.orig.tar.gz
  ffms2_2.19-1.debian.tar.gz
  libffms2-3_2.19-1_amd64.deb
  ffmsindex_2.19-1_amd64.deb
  libffms2-dev_2.19-1_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


Bug#731596: vlc: VLC skipping on some FLAC files

2013-12-07 Thread Ingo Saitz
Package: vlc
Version: 2.1.1-1
Severity: normal
Tags: patch


VLC produces an audible skipping on some FLAC files. See upstream 
Bug 9863 for an example and patch. Applying commit
a5a87c3c662a3f733d1b7a49b8cf5c5f595aed41 which should be included in
VLC 2.1.2 fixes this problem.

Bug: https://trac.videolan.org/vlc/ticket/9863
Fix: 
http://git.videolan.org/?p=vlc.git;a=commitdiff;h=a5a87c3c662a3f733d1b7a49b8cf5c5f595aed41

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

Kernel: Linux 3.12.2-pinguin20131201 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages vlc depends on:
ii  dpkg  1.17.3
ii  fonts-freefont-ttf20120503-1
ii  libaa11.4p5-41
ii  libavcodec-extra-54   6:9.10-1
ii  libavutil52   6:9.10-1
ii  libc6 2.17-97
ii  libcaca0  0.99.beta18-1
ii  libfreetype6  2.5.1-1
ii  libfribidi0   0.19.5-2
ii  libgcc1   1:4.8.2-8
ii  libgl1-mesa-glx [libgl1]  9.2.2-1
ii  libice6   2:1.0.8-2
ii  libqtcore44:4.8.5+git121-g2a9ea11+dfsg1-2
ii  libqtgui4 4:4.8.5+git121-g2a9ea11+dfsg1-2
ii  libsdl-image1.2   1.2.12-5
ii  libsdl1.2debian   1.2.15-8
ii  libsm62:1.2.1-2
ii  libstdc++64.8.2-8
ii  libtar0   1.2.20-1
ii  libva-x11-1   1.2.1-2
ii  libva11.2.1-2
ii  libvlccore7   2.1.1-1
ii  libx11-6  2:1.6.2-1
ii  libxcb-composite0 1.9.1-3.1
ii  libxcb-keysyms1   0.3.9-1
ii  libxcb-randr0 1.9.1-3.1
ii  libxcb-render01.9.1-3.1
ii  libxcb-shape0 1.9.1-3.1
ii  libxcb-shm0   1.9.1-3.1
ii  libxcb-xfixes01.9.1-3.1
ii  libxcb-xv01.9.1-3.1
ii  libxcb1   1.9.1-3.1
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.1-1
ii  zlib1g1:1.2.8.dfsg-1

Versions of packages vlc recommends:
pn  vlc-plugin-notify  
pn  vlc-plugin-pulse   
ii  xdg-utils  1.1.0~rc1+git20111210-7

Versions of packages vlc suggests:
pn  videolan-doc  

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