liblivemedia_2012.02.29-1_amd64.changes ACCEPTED into unstable

2012-03-01 Thread Debian FTP Masters



Accepted:
liblivemedia-dev_2012.02.29-1_amd64.deb
  to main/libl/liblivemedia/liblivemedia-dev_2012.02.29-1_amd64.deb
liblivemedia_2012.02.29-1.debian.tar.gz
  to main/libl/liblivemedia/liblivemedia_2012.02.29-1.debian.tar.gz
liblivemedia_2012.02.29-1.dsc
  to main/libl/liblivemedia/liblivemedia_2012.02.29-1.dsc
liblivemedia_2012.02.29.orig.tar.gz
  to main/libl/liblivemedia/liblivemedia_2012.02.29.orig.tar.gz
livemedia-utils_2012.02.29-1_amd64.deb
  to main/libl/liblivemedia/livemedia-utils_2012.02.29-1_amd64.deb


Override entries for your package:
liblivemedia-dev_2012.02.29-1_amd64.deb - optional libdevel
liblivemedia_2012.02.29-1.dsc - source libs
livemedia-utils_2012.02.29-1_amd64.deb - optional net

Announcing to debian-devel-chan...@lists.debian.org


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 liblivemedia_2012.02.29-1_amd64.changes

2012-03-01 Thread Debian FTP Masters
liblivemedia_2012.02.29-1_amd64.changes uploaded successfully to localhost
along with the files:
  liblivemedia_2012.02.29-1.dsc
  liblivemedia_2012.02.29.orig.tar.gz
  liblivemedia_2012.02.29-1.debian.tar.gz
  liblivemedia-dev_2012.02.29-1_amd64.deb
  livemedia-utils_2012.02.29-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#661819: marked as done (vlc: FTBFS on kfreebsd-*)

2012-03-01 Thread Debian Bug Tracking System
Your message dated Thu, 01 Mar 2012 22:03:11 +
with message-id 
and subject line Bug#661819: fixed in vlc 2.0.0-6
has caused the Debian Bug report #661819,
regarding vlc: FTBFS on kfreebsd-*
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.)


-- 
661819: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=661819
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: vlc
Version: 2.0.0-5
Severity: serious
Justification: FTBFS

Hi Benjamin and others,

as you know I have been spending countless hours trying to get vlc to
build on kfreebsd to unfuck some transitions. I was finally getting at a
working patch (part of it *from upstream*), while you uploaded the
(upstream) patch with another change which basically reverts its effect.
(Hint: --as-needed)

You'll find attached the patch I prepared and which has been tested both
on kfreebsd and on linux.


(On a personal note, next time, please don't blame me for:
 - your failure to attribute the patch to its actual author;
 - your failure to wait for the patch I said I was polishing, and
   actually testing on a porter box;
 - your basically reverting the patch through an extra link flag.

I realize I'm probably sounding angry. But that's the current state of
affairs.)

Mraw,
KiBi.
diff -Nru vlc-2.0.0/debian/changelog vlc-2.0.0/debian/changelog
--- vlc-2.0.0/debian/changelog	2012-03-01 16:04:30.0 +0100
+++ vlc-2.0.0/debian/changelog	2012-03-01 16:05:40.0 +0100
@@ -1,3 +1,16 @@
+vlc (2.0.0-4.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Fix FTBFS on GNU/kFreeBSD:
+- Add link-vlc-cache-gen-with-libstdc++.patch taken from upstream
+  after some investigation with Sam. This prevents vlc-cache-gen
+  from crashing.
+- Exclude some more plugins from non-Linux .install files (on a
+  separate sed line to ease further maintainer review).
+  * Set urgency to high for the RC bug fix.
+
+ -- Cyril Brulebois   Thu, 01 Mar 2012 07:52:44 +
+
 vlc (2.0.0-4) unstable; urgency=low
 
   * Enable and install Open Sound System (OSS) plugin.
diff -Nru vlc-2.0.0/debian/patches/link-vlc-cache-gen-with-libstdc++.patch vlc-2.0.0/debian/patches/link-vlc-cache-gen-with-libstdc++.patch
--- vlc-2.0.0/debian/patches/link-vlc-cache-gen-with-libstdc++.patch	1970-01-01 01:00:00.0 +0100
+++ vlc-2.0.0/debian/patches/link-vlc-cache-gen-with-libstdc++.patch	2012-03-01 16:05:40.0 +0100
@@ -0,0 +1,34 @@
+From: Sam Hocevar 
+Date: Wed, 29 Feb 2012 19:53:07 + (+0100)
+Subject: Link vlc-cache-gen with the C++ standard library
+X-Git-Url: http://repo.or.cz/w/vlc.git/commitdiff_plain/07d38617832be934896fa7a14fe52f1a65c901ab
+
+Link vlc-cache-gen with the C++ standard library to avoid issues when we
+dlclose() a C++ plugin that was built with a faulty library that may have
+registered __cxa_atexit callbacks (usually through the libstdc++ that
+library was built with).
+
+Upgrading libstdc++ is not always a solution since some code may have been
+inlined and we can't get rid of it.
+---
+
+diff --git a/bin/Makefile.am b/bin/Makefile.am
+index 832d482..40b4f46 100644
+--- a/bin/Makefile.am
 b/bin/Makefile.am
+@@ -59,7 +59,7 @@ vlc_win32_rc.rc: $(top_builddir)/config.status vlc_win32_rc.rc.in
+ vlc_win32_rc.$(OBJEXT): vlc_win32_rc.rc
+ 	$(WINDRES) --include-dir $(top_srcdir)/share/icons -i $< -o $@
+ 
+-vlc_cache_gen_SOURCES = cachegen.c
++vlc_cache_gen_SOURCES = cachegen.c dummy.cpp
+ vlc_cache_gen_LDADD = \
+ 	$(GNUGETOPT_LIBS) \
+ 	../compat/libcompat.la \
+diff --git a/bin/dummy.cpp b/bin/dummy.cpp
+new file mode 100644
+index 000..56a8b38
+--- /dev/null
 b/bin/dummy.cpp
+@@ -0,0 +1 @@
++/* This file is only here to force cachegen to be linked against libstdc++ */
diff -Nru vlc-2.0.0/debian/patches/series vlc-2.0.0/debian/patches/series
--- vlc-2.0.0/debian/patches/series	2012-03-01 16:04:30.0 +0100
+++ vlc-2.0.0/debian/patches/series	2012-03-01 16:05:40.0 +0100
@@ -1,3 +1,4 @@
 bp-monotonic-clock.patch
 altivec-cflags.patch
 v4l-kfreebsd.patch
+link-vlc-cache-gen-with-libstdc++.patch
diff -Nru vlc-2.0.0/debian/rules vlc-2.0.0/debian/rules
--- vlc-2.0.0/debian/rules	2012-03-01 16:04:30.0 +0100
+++ vlc-2.0.0/debian/rules	2012-03-01 16:05:40.0 +0100
@@ -181,6 +181,8 @@
 	# Remove some modules on non-linux arch
 	sed -e '/\(lib\|libaccess_\)\(alsa\|atmo\|dc1394\|dv\|fb\|pvr\|udev\)_/d' \
 	 debian/vlc-nox.install > debian/vlc-nox.install.kfreebsd
+	# More of them for 2.0.0
+	sed -i '/libdtv_plugin\|liblinsys_hdsdi_plugin\|liblinsys_sdi_plugin/d' debian/vlc-nox.install.kfreebsd
 

vlc_2.0.0-6_amd64.changes ACCEPTED into unstable

2012-03-01 Thread Debian FTP Masters



Accepted:
libvlc-dev_2.0.0-6_amd64.deb
  to main/v/vlc/libvlc-dev_2.0.0-6_amd64.deb
libvlc5_2.0.0-6_amd64.deb
  to main/v/vlc/libvlc5_2.0.0-6_amd64.deb
libvlccore-dev_2.0.0-6_amd64.deb
  to main/v/vlc/libvlccore-dev_2.0.0-6_amd64.deb
libvlccore5_2.0.0-6_amd64.deb
  to main/v/vlc/libvlccore5_2.0.0-6_amd64.deb
vlc-data_2.0.0-6_all.deb
  to main/v/vlc/vlc-data_2.0.0-6_all.deb
vlc-dbg_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-dbg_2.0.0-6_amd64.deb
vlc-nox_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-nox_2.0.0-6_amd64.deb
vlc-plugin-fluidsynth_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-plugin-fluidsynth_2.0.0-6_amd64.deb
vlc-plugin-jack_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-plugin-jack_2.0.0-6_amd64.deb
vlc-plugin-notify_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-plugin-notify_2.0.0-6_amd64.deb
vlc-plugin-pulse_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-plugin-pulse_2.0.0-6_amd64.deb
vlc-plugin-sdl_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-plugin-sdl_2.0.0-6_amd64.deb
vlc-plugin-svg_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-plugin-svg_2.0.0-6_amd64.deb
vlc-plugin-zvbi_2.0.0-6_amd64.deb
  to main/v/vlc/vlc-plugin-zvbi_2.0.0-6_amd64.deb
vlc_2.0.0-6.debian.tar.gz
  to main/v/vlc/vlc_2.0.0-6.debian.tar.gz
vlc_2.0.0-6.dsc
  to main/v/vlc/vlc_2.0.0-6.dsc
vlc_2.0.0-6_amd64.deb
  to main/v/vlc/vlc_2.0.0-6_amd64.deb


Override entries for your package:
libvlc-dev_2.0.0-6_amd64.deb - optional libdevel
libvlc5_2.0.0-6_amd64.deb - optional libs
libvlccore-dev_2.0.0-6_amd64.deb - optional libdevel
libvlccore5_2.0.0-6_amd64.deb - optional libs
vlc-data_2.0.0-6_all.deb - optional video
vlc-dbg_2.0.0-6_amd64.deb - extra debug
vlc-nox_2.0.0-6_amd64.deb - optional video
vlc-plugin-fluidsynth_2.0.0-6_amd64.deb - optional video
vlc-plugin-jack_2.0.0-6_amd64.deb - optional video
vlc-plugin-notify_2.0.0-6_amd64.deb - optional video
vlc-plugin-pulse_2.0.0-6_amd64.deb - optional video
vlc-plugin-sdl_2.0.0-6_amd64.deb - optional video
vlc-plugin-svg_2.0.0-6_amd64.deb - optional video
vlc-plugin-zvbi_2.0.0-6_amd64.deb - optional video
vlc_2.0.0-6.dsc - source video
vlc_2.0.0-6_amd64.deb - optional video

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 661819 


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 vlc_2.0.0-6_amd64.changes

2012-03-01 Thread Debian FTP Masters
vlc_2.0.0-6_amd64.changes uploaded successfully to localhost
along with the files:
  vlc_2.0.0-6.dsc
  vlc_2.0.0-6.debian.tar.gz
  libvlc-dev_2.0.0-6_amd64.deb
  libvlc5_2.0.0-6_amd64.deb
  libvlccore-dev_2.0.0-6_amd64.deb
  libvlccore5_2.0.0-6_amd64.deb
  vlc_2.0.0-6_amd64.deb
  vlc-data_2.0.0-6_all.deb
  vlc-dbg_2.0.0-6_amd64.deb
  vlc-nox_2.0.0-6_amd64.deb
  vlc-plugin-fluidsynth_2.0.0-6_amd64.deb
  vlc-plugin-jack_2.0.0-6_amd64.deb
  vlc-plugin-notify_2.0.0-6_amd64.deb
  vlc-plugin-pulse_2.0.0-6_amd64.deb
  vlc-plugin-sdl_2.0.0-6_amd64.deb
  vlc-plugin-svg_2.0.0-6_amd64.deb
  vlc-plugin-zvbi_2.0.0-6_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#653516: vlc segfaults by trying to open a directory if playlist is visible

2012-03-01 Thread reini
It doesn't happen reliably here, either, but it seems more likely to happen 
when another instance of vlc is running in the background. I'm running KDE, so 
it doesn't have anything with gnome-related software per se. Running vlc from 
konqueror or the command line doesn't matter, both segfault equally often.

Here's a gdb backtrace (I edited the dvd directory's path out):
(gdb) bt
#0  0x75377cb4 in DVDOpen (ppath=0x72d9c0 "/path/to/DVDDIR/")
at /build/buildd-libdvdread_4.2.0-1-amd64-
cnJJSM/libdvdread-4.2.0/src/dvd_reader.c:459
#1  0x755a63b3 in vm_reset (vm=0x959b20, dvdroot=0x72d9c0 
"/path/to/DVDDIR/")
at /build/buildd-libdvdnav_4.2.0-1-amd64-
uPwmIO/libdvdnav-4.2.0/src/vm/vm.c:358
#2  0x7559c62c in dvdnav_open (dest=0x7fffe084a980, path=0x72d9c0 
"/path/to/DVDDIR/")
at /build/buildd-libdvdnav_4.2.0-1-amd64-
uPwmIO/libdvdnav-4.2.0/src/dvdnav.c:99
#3  0x757b7f17 in Open () from 
/usr/lib/vlc/plugins/access/libdvdnav_plugin.so
#4  0x77964d75 in module_need () from /usr/lib/libvlccore.so.4
#5  0x779211fc in __demux_New () from /usr/lib/libvlccore.so.4
#6  0x7792ddd4 in InputSourceInit () from /usr/lib/libvlccore.so.4
#7  0x7792f128 in Init () from /usr/lib/libvlccore.so.4
#8  0x77932755 in Run () from /usr/lib/libvlccore.so.4
#9  0x7796a0f4 in thread_entry () from /usr/lib/libvlccore.so.4
#10 0x776c4b50 in start_thread (arg=) at 
pthread_create.c:304
#11 0x7720b90d in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#12 0x in ?? ()



___
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: [SCM] gmerlin/master: There is no need to bump dh requirement to 9, cdbs does not actually need it so higher.

2012-03-01 Thread Jonas Smedegaard
[resent to proper list]

On 12-02-18 at 05:02pm, ales...@users.alioth.debian.org wrote:
> There is no need to bump dh requirement to 9, cdbs does not 
> actually need it so higher.

>   cdbs (>= 0.4.93~),
> - debhelper (>= 9),
> + debhelper (>= 8.1.3~),

No need to tighten debhelper build-dependency _at_ _all_ due to 
multiarch when using CDBS: Please just use CDBS auto-resolved 
unversioned debhelper, unless you know better.

...and if you do know better, then please declare in CDBS 
auto-resolveable way like this in debian/rules:

# needs recent debhlper to satisfy foo with bar
CDBS_BUILD_DEPENDS += , debhelper (>= z.y.x~)



 - Jonas

-- 
 * Jonas Smedegaard - idealist & Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


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

invada-studio-plugins-lv2 1.2.0+repack0-3 MIGRATED to testing

2012-03-01 Thread Debian testing watch
FYI: The status of the invada-studio-plugins-lv2 source package
in Debian's testing distribution has changed.

  Previous version: 1.2.0+repack0-1
  Current version:  1.2.0+repack0-3

-- 
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 http://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


Bug#661819: vlc: FTBFS on kfreebsd-*

2012-03-01 Thread Benjamin Drung
Am Donnerstag, den 01.03.2012, 16:24 +0100 schrieb Cyril Brulebois:
> Hi Benjamin and others,
> 
> as you know I have been spending countless hours trying to get vlc to
> build on kfreebsd to unfuck some transitions.

Thanks for this work.

> I was finally getting at a
> working patch (part of it *from upstream*), while you uploaded the
> (upstream) patch with another change which basically reverts its effect.
> (Hint: --as-needed)

I wasn't aware that --as-needed breaks the patch. As part of enabling
hardening flags I moved the --as-needed flag, but wasn't aware, that the
flag previously didn't work as expected.

> You'll find attached the patch I prepared and which has been tested both
> on kfreebsd and on linux.
> 
> 
> (On a personal note, next time, please don't blame me for:

Sorry for being suggestive of blaming you. I didn't intend to blame you.
I only wanted to notify you.

>  - your failure to attribute the patch to its actual author;
>  - your failure to wait for the patch I said I was polishing, and
>actually testing on a porter box;

I modified the Makefiles manually and ran a test, but I wasn't carefully
enough.

>  - your basically reverting the patch through an extra link flag.
> 
> I realize I'm probably sounding angry. But that's the current state of
> affairs.)

I fixed the package and doing a testbuild. Once it succeeds, I will do
another upload and hopefully it will build on all arch then.

-- 
Benjamin Drung
Debian & Ubuntu Developer


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

guayadeque 0.3.5~ds0-2 MIGRATED to testing

2012-03-01 Thread Debian testing watch
FYI: The status of the guayadeque source package
in Debian's testing distribution has changed.

  Previous version: 0.3.1~dfsg0-2
  Current version:  0.3.5~ds0-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://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


Bug#661820: jackd2: Missing alsarawmidi driver

2012-03-01 Thread Roland Mas
Package: jackd2
Version: 1.9.8~dfsg.1-1
Severity: normal

JACK 1.9.8 introduced a new alsarawmidi driver; however, the packaging
system builds it, but doesn't include it into the binary package.  I
therefore suggest adding the following line to debian/rules, within the
"ifeq ($(DEB_HOST_ARCH_OS),linux)" block:

dh_install -pjackd2 debian/tmp/usr/lib/jack/jack_alsarawmidi.so

Thanks!

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

Kernel: Linux 3.2.0-1-686-pae (SMP w/1 CPU core)
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 jackd2 depends on:
ii  coreutils  8.13-3
ii  debconf [debconf-2.0]  1.5.41
ii  libasound2 1.0.25-2
ii  libc6  2.13-27
ii  libcelt0-0 0.7.1-1
ii  libdbus-1-31.4.18-1
ii  libexpat1  2.0.1-7.2
ii  libgcc11:4.6.2-16
ii  libjack-jackd2-0   1.9.8~dfsg.1-1
ii  libncurses55.9-4
ii  libreadline6   6.2-8
ii  libsamplerate0 0.1.8-3
ii  libsndfile11.0.25-4
ii  libstdc++6 4.6.2-16
ii  libtinfo5  5.9-4
ii  python 2.7.2-10
ii  python-dbus0.84.0-3

Versions of packages jackd2 recommends:
ii  jackd2-firewire  1.9.8~dfsg.1-1
ii  libpam-modules   1.1.3-7
ii  qjackctl 0.3.8-1

Versions of packages jackd2 suggests:
pn  jack-tools   
pn  meterbridge  

-- debconf information:
* jackd/tweak_rt_limits: true

-- 
Roland Mas

How does an octopus go into battle?
Fully-armed.



___
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#661819: vlc: FTBFS on kfreebsd-*

2012-03-01 Thread Cyril Brulebois
Source: vlc
Version: 2.0.0-5
Severity: serious
Justification: FTBFS

Hi Benjamin and others,

as you know I have been spending countless hours trying to get vlc to
build on kfreebsd to unfuck some transitions. I was finally getting at a
working patch (part of it *from upstream*), while you uploaded the
(upstream) patch with another change which basically reverts its effect.
(Hint: --as-needed)

You'll find attached the patch I prepared and which has been tested both
on kfreebsd and on linux.


(On a personal note, next time, please don't blame me for:
 - your failure to attribute the patch to its actual author;
 - your failure to wait for the patch I said I was polishing, and
   actually testing on a porter box;
 - your basically reverting the patch through an extra link flag.

I realize I'm probably sounding angry. But that's the current state of
affairs.)

Mraw,
KiBi.
diff -Nru vlc-2.0.0/debian/changelog vlc-2.0.0/debian/changelog
--- vlc-2.0.0/debian/changelog	2012-03-01 16:04:30.0 +0100
+++ vlc-2.0.0/debian/changelog	2012-03-01 16:05:40.0 +0100
@@ -1,3 +1,16 @@
+vlc (2.0.0-4.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Fix FTBFS on GNU/kFreeBSD:
+- Add link-vlc-cache-gen-with-libstdc++.patch taken from upstream
+  after some investigation with Sam. This prevents vlc-cache-gen
+  from crashing.
+- Exclude some more plugins from non-Linux .install files (on a
+  separate sed line to ease further maintainer review).
+  * Set urgency to high for the RC bug fix.
+
+ -- Cyril Brulebois   Thu, 01 Mar 2012 07:52:44 +
+
 vlc (2.0.0-4) unstable; urgency=low
 
   * Enable and install Open Sound System (OSS) plugin.
diff -Nru vlc-2.0.0/debian/patches/link-vlc-cache-gen-with-libstdc++.patch vlc-2.0.0/debian/patches/link-vlc-cache-gen-with-libstdc++.patch
--- vlc-2.0.0/debian/patches/link-vlc-cache-gen-with-libstdc++.patch	1970-01-01 01:00:00.0 +0100
+++ vlc-2.0.0/debian/patches/link-vlc-cache-gen-with-libstdc++.patch	2012-03-01 16:05:40.0 +0100
@@ -0,0 +1,34 @@
+From: Sam Hocevar 
+Date: Wed, 29 Feb 2012 19:53:07 + (+0100)
+Subject: Link vlc-cache-gen with the C++ standard library
+X-Git-Url: http://repo.or.cz/w/vlc.git/commitdiff_plain/07d38617832be934896fa7a14fe52f1a65c901ab
+
+Link vlc-cache-gen with the C++ standard library to avoid issues when we
+dlclose() a C++ plugin that was built with a faulty library that may have
+registered __cxa_atexit callbacks (usually through the libstdc++ that
+library was built with).
+
+Upgrading libstdc++ is not always a solution since some code may have been
+inlined and we can't get rid of it.
+---
+
+diff --git a/bin/Makefile.am b/bin/Makefile.am
+index 832d482..40b4f46 100644
+--- a/bin/Makefile.am
 b/bin/Makefile.am
+@@ -59,7 +59,7 @@ vlc_win32_rc.rc: $(top_builddir)/config.status vlc_win32_rc.rc.in
+ vlc_win32_rc.$(OBJEXT): vlc_win32_rc.rc
+ 	$(WINDRES) --include-dir $(top_srcdir)/share/icons -i $< -o $@
+ 
+-vlc_cache_gen_SOURCES = cachegen.c
++vlc_cache_gen_SOURCES = cachegen.c dummy.cpp
+ vlc_cache_gen_LDADD = \
+ 	$(GNUGETOPT_LIBS) \
+ 	../compat/libcompat.la \
+diff --git a/bin/dummy.cpp b/bin/dummy.cpp
+new file mode 100644
+index 000..56a8b38
+--- /dev/null
 b/bin/dummy.cpp
+@@ -0,0 +1 @@
++/* This file is only here to force cachegen to be linked against libstdc++ */
diff -Nru vlc-2.0.0/debian/patches/series vlc-2.0.0/debian/patches/series
--- vlc-2.0.0/debian/patches/series	2012-03-01 16:04:30.0 +0100
+++ vlc-2.0.0/debian/patches/series	2012-03-01 16:05:40.0 +0100
@@ -1,3 +1,4 @@
 bp-monotonic-clock.patch
 altivec-cflags.patch
 v4l-kfreebsd.patch
+link-vlc-cache-gen-with-libstdc++.patch
diff -Nru vlc-2.0.0/debian/rules vlc-2.0.0/debian/rules
--- vlc-2.0.0/debian/rules	2012-03-01 16:04:30.0 +0100
+++ vlc-2.0.0/debian/rules	2012-03-01 16:05:40.0 +0100
@@ -181,6 +181,8 @@
 	# Remove some modules on non-linux arch
 	sed -e '/\(lib\|libaccess_\)\(alsa\|atmo\|dc1394\|dv\|fb\|pvr\|udev\)_/d' \
 	 debian/vlc-nox.install > debian/vlc-nox.install.kfreebsd
+	# More of them for 2.0.0
+	sed -i '/libdtv_plugin\|liblinsys_hdsdi_plugin\|liblinsys_sdi_plugin/d' debian/vlc-nox.install.kfreebsd
 	sed -e '/\(lib\|libaccess_\)v4l2_/d' \
 	 debian/vlc-nox.install.kfreebsd > debian/vlc-nox.install.hurd
 	cp tmp/libvlc.a debian/tmp/usr/lib


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#660935: marked as done (vlc: FTBFS on kfreebsd-*)

2012-03-01 Thread Debian Bug Tracking System
Your message dated Thu, 01 Mar 2012 13:03:01 +
with message-id 
and subject line Bug#660935: fixed in vlc 2.0.0-5
has caused the Debian Bug report #660935,
regarding vlc: FTBFS on kfreebsd-*
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.)


-- 
660935: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660935
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: vlc
Version: 2.0.0-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

vlc FTBFS on the kfreebsd buidds:
> posix/thread.c: In function 'vlc_cond_timedwait':
> posix/thread.c:456:3: error: #error FIXME: breaks vlc_cond_init_daytime()
> make[2]: *** [posix/thread.lo] Error 1

See the build logs linked from
https://buildd.debian.org/status/package.php?p=vlc

Cheers,
Julien


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: vlc
Source-Version: 2.0.0-5

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:

libvlc-dev_2.0.0-5_amd64.deb
  to main/v/vlc/libvlc-dev_2.0.0-5_amd64.deb
libvlc5_2.0.0-5_amd64.deb
  to main/v/vlc/libvlc5_2.0.0-5_amd64.deb
libvlccore-dev_2.0.0-5_amd64.deb
  to main/v/vlc/libvlccore-dev_2.0.0-5_amd64.deb
libvlccore5_2.0.0-5_amd64.deb
  to main/v/vlc/libvlccore5_2.0.0-5_amd64.deb
vlc-data_2.0.0-5_all.deb
  to main/v/vlc/vlc-data_2.0.0-5_all.deb
vlc-dbg_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-dbg_2.0.0-5_amd64.deb
vlc-nox_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-nox_2.0.0-5_amd64.deb
vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
vlc-plugin-jack_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-jack_2.0.0-5_amd64.deb
vlc-plugin-notify_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-notify_2.0.0-5_amd64.deb
vlc-plugin-pulse_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-pulse_2.0.0-5_amd64.deb
vlc-plugin-sdl_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-sdl_2.0.0-5_amd64.deb
vlc-plugin-svg_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-svg_2.0.0-5_amd64.deb
vlc-plugin-zvbi_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-zvbi_2.0.0-5_amd64.deb
vlc_2.0.0-5.debian.tar.gz
  to main/v/vlc/vlc_2.0.0-5.debian.tar.gz
vlc_2.0.0-5.dsc
  to main/v/vlc/vlc_2.0.0-5.dsc
vlc_2.0.0-5_amd64.deb
  to main/v/vlc/vlc_2.0.0-5_amd64.deb



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 660...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Benjamin Drung  (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...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 01 Mar 2012 13:37:41 +0100
Source: vlc
Binary: libvlc-dev libvlc5 libvlccore-dev libvlccore5 vlc vlc-data vlc-dbg 
vlc-nox vlc-plugin-fluidsynth vlc-plugin-jack vlc-plugin-notify 
vlc-plugin-pulse vlc-plugin-sdl vlc-plugin-svg vlc-plugin-zvbi
Architecture: source amd64 all
Version: 2.0.0-5
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 

Changed-By: Benjamin Drung 
Description: 
 libvlc-dev - development files for libvlc
 libvlc5- multimedia player and streamer library
 libvlccore-dev - development files for libvlccore
 libvlccore5 - 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 - PulseAudio 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: 658030 660934 660935
Changes: 
 vlc (2.0.0-5) unstable; urgency=low
 .
   * Rewrite v4l kfreebsd patch.
   * Link vlc-cache-gen with the C++ standard library. (Closes: #660934, 
#660935)
   * Enable hardened build flags through dpkg-buildflags. (Closes: #658030)
Checksums-Sha1: 
 369c5da4aab1dad58c32594bdaced62cab805a7d 4721 vlc_2.0.0-5.dsc
 4f48703a2b7a45593c509e57478a8d6301e0f0fc 56750 vlc_2.0.0-5.debian.tar.gz
 4913775e2eab2c79bf161b5ab76bfccd74361174 74504 libvlc-dev

Bug#660934: marked as done (vlc: FTBFS on armel)

2012-03-01 Thread Debian Bug Tracking System
Your message dated Thu, 01 Mar 2012 13:03:00 +
with message-id 
and subject line Bug#660934: fixed in vlc 2.0.0-5
has caused the Debian Bug report #660934,
regarding vlc: FTBFS on armel
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.)


-- 
660934: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660934
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: vlc
Version: 2.0.0-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

vlc FTBFS on the armel buildd, with:
> /bin/bash: line 4: 32312 Segmentation fault  ./vlc-cache-gen ../modules

See the build log at
https://buildd.debian.org/status/fetch.php?pkg=vlc&arch=armel&ver=2.0.0-1&stamp=1329552344

Cheers,
Julien


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: vlc
Source-Version: 2.0.0-5

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:

libvlc-dev_2.0.0-5_amd64.deb
  to main/v/vlc/libvlc-dev_2.0.0-5_amd64.deb
libvlc5_2.0.0-5_amd64.deb
  to main/v/vlc/libvlc5_2.0.0-5_amd64.deb
libvlccore-dev_2.0.0-5_amd64.deb
  to main/v/vlc/libvlccore-dev_2.0.0-5_amd64.deb
libvlccore5_2.0.0-5_amd64.deb
  to main/v/vlc/libvlccore5_2.0.0-5_amd64.deb
vlc-data_2.0.0-5_all.deb
  to main/v/vlc/vlc-data_2.0.0-5_all.deb
vlc-dbg_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-dbg_2.0.0-5_amd64.deb
vlc-nox_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-nox_2.0.0-5_amd64.deb
vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
vlc-plugin-jack_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-jack_2.0.0-5_amd64.deb
vlc-plugin-notify_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-notify_2.0.0-5_amd64.deb
vlc-plugin-pulse_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-pulse_2.0.0-5_amd64.deb
vlc-plugin-sdl_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-sdl_2.0.0-5_amd64.deb
vlc-plugin-svg_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-svg_2.0.0-5_amd64.deb
vlc-plugin-zvbi_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-zvbi_2.0.0-5_amd64.deb
vlc_2.0.0-5.debian.tar.gz
  to main/v/vlc/vlc_2.0.0-5.debian.tar.gz
vlc_2.0.0-5.dsc
  to main/v/vlc/vlc_2.0.0-5.dsc
vlc_2.0.0-5_amd64.deb
  to main/v/vlc/vlc_2.0.0-5_amd64.deb



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 660...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Benjamin Drung  (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...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 01 Mar 2012 13:37:41 +0100
Source: vlc
Binary: libvlc-dev libvlc5 libvlccore-dev libvlccore5 vlc vlc-data vlc-dbg 
vlc-nox vlc-plugin-fluidsynth vlc-plugin-jack vlc-plugin-notify 
vlc-plugin-pulse vlc-plugin-sdl vlc-plugin-svg vlc-plugin-zvbi
Architecture: source amd64 all
Version: 2.0.0-5
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 

Changed-By: Benjamin Drung 
Description: 
 libvlc-dev - development files for libvlc
 libvlc5- multimedia player and streamer library
 libvlccore-dev - development files for libvlccore
 libvlccore5 - 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 - PulseAudio 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: 658030 660934 660935
Changes: 
 vlc (2.0.0-5) unstable; urgency=low
 .
   * Rewrite v4l kfreebsd patch.
   * Link vlc-cache-gen with the C++ standard library. (Closes: #660934, 
#660935)
   * Enable hardened build flags through dpkg-buildflags. (Closes: #658030)
Checksums-Sha1: 
 369c5da4aab1dad58c32594bdaced62cab805a7d 4721 vlc_2.0.0-5.dsc
 4f48703a2b7a45593c509e57478a8d6301e0f0fc 56750 vlc_2.0.0-5.debian.tar.gz
 4913775e2eab2c79bf161b5ab76bfccd74361174 74504 libvlc-dev_2.0.0-5_amd64.deb
 4096b6f0a91e221c30e727f6b983180cfd4f35e0 46

Bug#658030: marked as done (Please enable hardened build flags)

2012-03-01 Thread Debian Bug Tracking System
Your message dated Thu, 01 Mar 2012 13:03:00 +
with message-id 
and subject line Bug#658030: fixed in vlc 2.0.0-5
has caused the Debian Bug report #658030,
regarding Please enable hardened build flags
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.)


-- 
658030: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=658030
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: vlc
Severity: important

Please enable hardened build flags through dpkg-buildflags.

Cheers,
Moritz


--- End Message ---
--- Begin Message ---
Source: vlc
Source-Version: 2.0.0-5

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:

libvlc-dev_2.0.0-5_amd64.deb
  to main/v/vlc/libvlc-dev_2.0.0-5_amd64.deb
libvlc5_2.0.0-5_amd64.deb
  to main/v/vlc/libvlc5_2.0.0-5_amd64.deb
libvlccore-dev_2.0.0-5_amd64.deb
  to main/v/vlc/libvlccore-dev_2.0.0-5_amd64.deb
libvlccore5_2.0.0-5_amd64.deb
  to main/v/vlc/libvlccore5_2.0.0-5_amd64.deb
vlc-data_2.0.0-5_all.deb
  to main/v/vlc/vlc-data_2.0.0-5_all.deb
vlc-dbg_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-dbg_2.0.0-5_amd64.deb
vlc-nox_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-nox_2.0.0-5_amd64.deb
vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
vlc-plugin-jack_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-jack_2.0.0-5_amd64.deb
vlc-plugin-notify_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-notify_2.0.0-5_amd64.deb
vlc-plugin-pulse_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-pulse_2.0.0-5_amd64.deb
vlc-plugin-sdl_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-sdl_2.0.0-5_amd64.deb
vlc-plugin-svg_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-svg_2.0.0-5_amd64.deb
vlc-plugin-zvbi_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-zvbi_2.0.0-5_amd64.deb
vlc_2.0.0-5.debian.tar.gz
  to main/v/vlc/vlc_2.0.0-5.debian.tar.gz
vlc_2.0.0-5.dsc
  to main/v/vlc/vlc_2.0.0-5.dsc
vlc_2.0.0-5_amd64.deb
  to main/v/vlc/vlc_2.0.0-5_amd64.deb



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 658...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Benjamin Drung  (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...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 01 Mar 2012 13:37:41 +0100
Source: vlc
Binary: libvlc-dev libvlc5 libvlccore-dev libvlccore5 vlc vlc-data vlc-dbg 
vlc-nox vlc-plugin-fluidsynth vlc-plugin-jack vlc-plugin-notify 
vlc-plugin-pulse vlc-plugin-sdl vlc-plugin-svg vlc-plugin-zvbi
Architecture: source amd64 all
Version: 2.0.0-5
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 

Changed-By: Benjamin Drung 
Description: 
 libvlc-dev - development files for libvlc
 libvlc5- multimedia player and streamer library
 libvlccore-dev - development files for libvlccore
 libvlccore5 - 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 - PulseAudio 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: 658030 660934 660935
Changes: 
 vlc (2.0.0-5) unstable; urgency=low
 .
   * Rewrite v4l kfreebsd patch.
   * Link vlc-cache-gen with the C++ standard library. (Closes: #660934, 
#660935)
   * Enable hardened build flags through dpkg-buildflags. (Closes: #658030)
Checksums-Sha1: 
 369c5da4aab1dad58c32594bdaced62cab805a7d 4721 vlc_2.0.0-5.dsc
 4f48703a2b7a45593c509e57478a8d6301e0f0fc 56750 vlc_2.0.0-5.debian.tar.gz
 4913775e2eab2c79bf161b5ab76bfccd74361174 74504 libvlc-dev_2.0.0-5_amd64.deb
 4096b6f0a91e221c30e727f6b983180cfd4f35e0 46852 libvlc5_2.0.0-5_amd64.deb
 c89fba3ccecf6f9879bca65654841f133dc668af 666354 
libvlccore-dev_2.0.0-5_amd64.deb
 8a1bb17a2f0da2103d7ec67dc54f72644066b797 424344 libvlccore5_2.0.0-5_amd64.deb
 6b223d13f91d8a65955f0fae05c62127066423ea 1353350 vlc_2.0.0-5_amd64.deb
 208b81062465f07c67

Bug#661805: Classes [unpackOSCstream] and [packOSCstream] are broken

2012-03-01 Thread Roman Haefeli
Package: pd-osc
Version: 0.1-1
Severity: normal

The mentioned classes are broken due to the lack of the classes 
[slipenc] and [slipdec]. There is no package in Debian yet, that
provides those classes.

A suggested fix is to create a pd-slip package containing those
classes and make pd-osc depend on pd-slip.


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

Kernel: Linux 3.1.0-1-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages pd-osc depends on:
ii  libc6   2.13-22
ii  puredata [pd]   0.43.1-1
ii  puredata-core [pd]  0.43.1-1

Versions of packages pd-osc recommends:
ii  pd-iemnet  0.1-2

Versions of packages pd-osc suggests:
pn  pd-comport  

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


vlc_2.0.0-5_amd64.changes ACCEPTED into unstable

2012-03-01 Thread Debian FTP Masters



Accepted:
libvlc-dev_2.0.0-5_amd64.deb
  to main/v/vlc/libvlc-dev_2.0.0-5_amd64.deb
libvlc5_2.0.0-5_amd64.deb
  to main/v/vlc/libvlc5_2.0.0-5_amd64.deb
libvlccore-dev_2.0.0-5_amd64.deb
  to main/v/vlc/libvlccore-dev_2.0.0-5_amd64.deb
libvlccore5_2.0.0-5_amd64.deb
  to main/v/vlc/libvlccore5_2.0.0-5_amd64.deb
vlc-data_2.0.0-5_all.deb
  to main/v/vlc/vlc-data_2.0.0-5_all.deb
vlc-dbg_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-dbg_2.0.0-5_amd64.deb
vlc-nox_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-nox_2.0.0-5_amd64.deb
vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
vlc-plugin-jack_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-jack_2.0.0-5_amd64.deb
vlc-plugin-notify_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-notify_2.0.0-5_amd64.deb
vlc-plugin-pulse_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-pulse_2.0.0-5_amd64.deb
vlc-plugin-sdl_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-sdl_2.0.0-5_amd64.deb
vlc-plugin-svg_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-svg_2.0.0-5_amd64.deb
vlc-plugin-zvbi_2.0.0-5_amd64.deb
  to main/v/vlc/vlc-plugin-zvbi_2.0.0-5_amd64.deb
vlc_2.0.0-5.debian.tar.gz
  to main/v/vlc/vlc_2.0.0-5.debian.tar.gz
vlc_2.0.0-5.dsc
  to main/v/vlc/vlc_2.0.0-5.dsc
vlc_2.0.0-5_amd64.deb
  to main/v/vlc/vlc_2.0.0-5_amd64.deb


Override entries for your package:
libvlc-dev_2.0.0-5_amd64.deb - optional libdevel
libvlc5_2.0.0-5_amd64.deb - optional libs
libvlccore-dev_2.0.0-5_amd64.deb - optional libdevel
libvlccore5_2.0.0-5_amd64.deb - optional libs
vlc-data_2.0.0-5_all.deb - optional video
vlc-dbg_2.0.0-5_amd64.deb - extra debug
vlc-nox_2.0.0-5_amd64.deb - optional video
vlc-plugin-fluidsynth_2.0.0-5_amd64.deb - optional video
vlc-plugin-jack_2.0.0-5_amd64.deb - optional video
vlc-plugin-notify_2.0.0-5_amd64.deb - optional video
vlc-plugin-pulse_2.0.0-5_amd64.deb - optional video
vlc-plugin-sdl_2.0.0-5_amd64.deb - optional video
vlc-plugin-svg_2.0.0-5_amd64.deb - optional video
vlc-plugin-zvbi_2.0.0-5_amd64.deb - optional video
vlc_2.0.0-5.dsc - source video
vlc_2.0.0-5_amd64.deb - optional video

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 658030 660934 660935 


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 vlc_2.0.0-5_amd64.changes

2012-03-01 Thread Debian FTP Masters
vlc_2.0.0-5_amd64.changes uploaded successfully to localhost
along with the files:
  vlc_2.0.0-5.dsc
  vlc_2.0.0-5.debian.tar.gz
  libvlc-dev_2.0.0-5_amd64.deb
  libvlc5_2.0.0-5_amd64.deb
  libvlccore-dev_2.0.0-5_amd64.deb
  libvlccore5_2.0.0-5_amd64.deb
  vlc_2.0.0-5_amd64.deb
  vlc-data_2.0.0-5_all.deb
  vlc-dbg_2.0.0-5_amd64.deb
  vlc-nox_2.0.0-5_amd64.deb
  vlc-plugin-fluidsynth_2.0.0-5_amd64.deb
  vlc-plugin-jack_2.0.0-5_amd64.deb
  vlc-plugin-notify_2.0.0-5_amd64.deb
  vlc-plugin-pulse_2.0.0-5_amd64.deb
  vlc-plugin-sdl_2.0.0-5_amd64.deb
  vlc-plugin-svg_2.0.0-5_amd64.deb
  vlc-plugin-zvbi_2.0.0-5_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


Processed: retitle 660984 to ITP: openimageio -- a library for reading and writing images, and a bunch of related stuff ...

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

> retitle 660984 ITP: openimageio -- a library for reading and writing images, 
> and a bunch of related stuff
Bug #660984 [wnpp] RFP: openimageio -- a library for reading and writing 
images, and a bunch of related classes, utilities, and applications.
Changed Bug title to 'ITP: openimageio -- a library for reading and writing 
images, and a bunch of related stuff' from 'RFP: openimageio -- a library for 
reading and writing images, and a bunch of related classes, utilities, and 
applications.'
> owner 660984 Debian Multimedia Maintainers 
> 
Bug #660984 [wnpp] ITP: openimageio -- a library for reading and writing 
images, and a bunch of related stuff
Owner recorded as Debian Multimedia Maintainers 
.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
660984: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=660984
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#659633: finally seems to work :-)

2012-03-01 Thread Klaumi Klingsporn
Only to let you know: 

Because 0.3.5~ds0-1 didn't work for me as described, I downgraded to
0.3.1 again, but today there was the upgrade to 0.3.5~ds0-2, which had 
reached testing.

I had the same problem as descibed in the original bug-report, but
after moving the config-directory ~/.guayadeque out of the way,
restarting guayadeque and reconfiguring all (g!) it seems to work
now.

klaumi

--- 
Klaus-Michael Klingsporn
mail: klaumi...@gmx.de
web: www.klaumikli.de



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


alsaequal_0.6-3_amd64.changes ACCEPTED into unstable

2012-03-01 Thread Debian FTP Masters



Accepted:
alsaequal_0.6-3.debian.tar.gz
  to main/a/alsaequal/alsaequal_0.6-3.debian.tar.gz
alsaequal_0.6-3.dsc
  to main/a/alsaequal/alsaequal_0.6-3.dsc
libasound2-plugin-equal_0.6-3_amd64.deb
  to main/a/alsaequal/libasound2-plugin-equal_0.6-3_amd64.deb


Override entries for your package:
alsaequal_0.6-3.dsc - source sound
libasound2-plugin-equal_0.6-3_amd64.deb - optional libs

Announcing to debian-devel-chan...@lists.debian.org


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 alsaequal_0.6-3_amd64.changes

2012-03-01 Thread Debian FTP Masters
alsaequal_0.6-3_amd64.changes uploaded successfully to localhost
along with the files:
  alsaequal_0.6-3.dsc
  alsaequal_0.6-3.debian.tar.gz
  libasound2-plugin-equal_0.6-3_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