Bug#625282: jack-keyboard: Pianola mode (MIDI-in) broken wrt channel numbers

2011-05-03 Thread Dan Muresan
Package: jack-keyboard
Version: 2.5-2
Severity: normal
Tags: patch

Per the manual page, jack-keyboard should pass through incoming MIDI 
messages but replace the channel number with its own. It only recognizes
incoming messages sent on MIDI channel 0 however, and does not rewrite
the channel at all.


-- System Information:
Debian Release: squeeze/sid
  APT prefers lucid-updates
  APT policy: (500, 'lucid-updates'), (500, 'lucid-security'), (500, 
'lucid-proposed'), (500, 'lucid-backports'), (500, 'lucid')
Architecture: i386 (i686)

Kernel: Linux 2.6.31-11-rt (SMP w/2 CPU cores; PREEMPT)
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 jack-keyboard depends on:
ii  jackd  5danmppa1~lucid1  JACK Audio Connection Kit (default
ii  libc6  2.11.1-0ubuntu7.8 Embedded GNU C Library: Shared lib
ii  libgli 2.24.1-0ubuntu1   The GLib library of C routines
ii  libgtk 2.20.1-0ubuntu2   The GTK+ graphical user interface 
ii  libjac 1:0.120.1+svn4142-2   JACK Audio Connection Kit (librari
ii  liblas 0.6.0~rc2-1ubuntu2danmppa3~lucid1 LASH Audio Session Handler (LASH) 
ii  libx11 2:1.3.2-1ubuntu3  X11 client-side library

Versions of packages jack-keyboard recommends:
ii  a2jmidid  6-0ubuntu2 daemon for exposing legacy ALSA MI
ii  qjackctl  0.3.7-4danmppa1~lucid1 User interface for controlling the

Versions of packages jack-keyboard suggests:
ii  ghoste 20100923-0ubuntu1danmppa2~lucid1  A graphical DSSI plugin host
ii  lashd  0.6.0~rc2-1ubuntu2danmppa3~lucid1 LASH Audio Session Handler (LASH) 
ii  whysyn 20090403-1ubuntu1 DSSI Soft Synth Interface

-- no debconf information
From 724fa8746dc00c32db9dfadfcfe9fa46fa6ed95e Mon Sep 17 00:00:00 2001
From: Dan A. Muresan danm...@gmail.com
Date: Tue, 3 May 2011 01:12:17 +0300
Subject: [PATCH] Fix pianola mode (MIDI-in).

Per the manual page, jack-keyboard should pass through incoming MIDI
messages but replace the channel number with its own. The code only
recognized incoming messages sent on MIDI channel 0 however, and did
not rewrite the channel at all.
---
 src/jack-keyboard.c |   14 ++
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/jack-keyboard.c b/src/jack-keyboard.c
index 5f8bc7c..70c1027 100644
--- a/src/jack-keyboard.c
+++ b/src/jack-keyboard.c
@@ -199,23 +199,29 @@ process_received_message_async(gpointer evp)
 {
int i;
struct MidiMessage *ev = (struct MidiMessage *)evp;
+   int b0 = ev-data [0], b1 = ev-data [1];
 
-   if (ev-data[0] == MIDI_RESET || (ev-data[0] == MIDI_CONTROLLER 
-   (ev-data[1] == MIDI_ALL_NOTES_OFF || ev-data[1] == 
MIDI_ALL_SOUND_OFF))) {
+   /* Strip channel from channel messages */
+   if (b0 = 0x80  b0 = 0xEF)
+   b0 = b0  0xF0;
+   
+   if (b0 == MIDI_RESET || (b0 == MIDI_CONTROLLER 
+   (b1 == MIDI_ALL_NOTES_OFF || b1 == MIDI_ALL_SOUND_OFF))) {
 
for (i = 0; i  NNOTES; i++) {
piano_keyboard_set_note_off(keyboard, i);
}
}
 
-   if (ev-data[0] == MIDI_NOTE_ON) {
+   if (b0 == MIDI_NOTE_ON) {
piano_keyboard_set_note_on(keyboard, ev-data[1]);
}
 
-   if (ev-data[0] == MIDI_NOTE_OFF) {
+   if (b0 == MIDI_NOTE_OFF) {
piano_keyboard_set_note_off(keyboard, ev-data[1]);
}
 
+   ev-data [0] = b0 | channel;
queue_message(ev);
 
return FALSE;
-- 
1.7.0.4

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


Processed: tagging 625282

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

 tags 625282 + pending
Bug #625282 [jack-keyboard] jack-keyboard: Pianola mode (MIDI-in) broken wrt 
channel numbers
Added tag(s) pending.
 thanks
Stopping processing here.

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


Bug#625284: libavformat52 needs to break mencoder ( 2:1.0~rc4~), too

2011-05-03 Thread Uwe Kleine-König
Package: libavformat52
Version: 4:0.6.2-1
Severity: normal
Tags: patch

Hello,

[I was unsure if I should reopen #611579 or report a new bug. Choosed
the latter.]

If you look at http://bugs.debian.org/623096#20 you see that #611579
affects mencoder, too:

$ mencoder
mencoder: relocation error: mencoder: symbol codec_wav_tags, version 
LIBAVFORMAT_52 not defined in file libavformat.so.52 with link time reference

So please Break: mencoder, too.

The patch below bases on the master-0.6 branch.

Best regards
Uwe

diff --git a/debian/control b/debian/control
index a4b4352..8c1266c 100644
--- a/debian/control
+++ b/debian/control
@@ -152,7 +152,7 @@ Package: libavformat52
 Architecture: any
 Depends: ${shlibs:Depends},
  ${misc:Depends}
-Breaks: mplayer ( 2:1.0~rc4~), mplayer-gui ( 2:1.0~rc4~)
+Breaks: mplayer ( 2:1.0~rc4~), mplayer-gui ( 2:1.0~rc4~), mencoder ( 
2:1.0~rc4~)
 Description: Libav file format library
  This is the library for handling file formats from Libav.
  .


-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (900, 'stable-updates'), (900, 'proposed-updates'), (900, 
'stable'), (800, 'testing-proposed-updates'), (800, 'testing'), (700, 
'unstable'), (600, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.39-rc4-amd64 (SMP w/4 CPU cores)
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 libavformat52 depends on:
ii  libavcodec524:0.6.2-1Libav codec library
ii  libavutil50 4:0.6.2-1Libav utility library
ii  libbz2-1.0  1.0.5-6  high-quality block-sorting file co
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  librtmp02.3-2toolkit for RTMP streams (shared l
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

libavformat52 recommends no packages.

libavformat52 suggests no packages.

-- no debconf information



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


Bug#625285: mplayer-dbg: should depend on mplayer (=${binary:Version}) to be useful

2011-05-03 Thread Uwe Kleine-König
Package: mplayer-dbg
Version: 2:1.0~rc3++final.dfsg1-1
Severity: normal

Hello,

when having mplayer installed in a different version than mplayer-dbg a
debugger obviously cannot get the right symbols. AFAIK -dbg packages
usually strictly depend on the same version of the corresponding binary
package.

Best regards
Uwe

-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (900, 'stable-updates'), (900, 'proposed-updates'), (900, 
'stable'), (800, 'testing-proposed-updates'), (800, 'testing'), (700, 
'unstable'), (600, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.39-rc4-amd64 (SMP w/4 CPU cores)
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 mplayer-dbg depends on:
ii  mplayer2:1.0~rc4.dfsg1-2 movie player for Unix-like systems

Versions of packages mplayer-dbg recommends:
pn  ffmpeg-dbgnone (no description available)

mplayer-dbg suggests no packages.

-- no debconf information



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


puredata-import installation location

2011-05-03 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

i noticed that puredata-import installs mostly into /usr/lib/pd/extra,
only the LICENSE.txt get's installed into /usr/lib/puredata/extra.

this leads to weird warnings in the pd-0.43 help-browser, claiming that
import is double installed.

i guess, installing to 2 locations is just an oversight.

since the package is named puredata-import and explicitely claims that
it is targeted at puredata only (and not the other pd providers), i
assume that it is meant to be installed into /usr/lib/puredata/extra.
the attached patch should fix this.

gfasmdr
IOhannes
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk2/xRUACgkQkX2Xpv6ydvRHdACfXUiWZICGi96vsfDnI4ztttIo
WN0AoN2D2F5A4QlKPP6xtpTmltx3mhBO
=cocv
-END PGP SIGNATURE-
From 9f4ea2b8d42c8a616e6dc0b5e1588dc1b5c55213 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= zmoel...@iem.at
Date: Tue, 3 May 2011 10:57:48 +0200
Subject: [PATCH] changed installation directory to /u/l/puredata

---
 debian/rules |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/rules b/debian/rules
index 77dc3cb..5e026b5 100755
--- a/debian/rules
+++ b/debian/rules
@@ -2,7 +2,7 @@
 
 LIBRARY_NAME = import
 PACKAGE = puredata-$(LIBRARY_NAME)
-pkglibdir = /usr/lib/pd/extra
+pkglibdir = /usr/lib/puredata/extra
 
 %:
 	dh $@ --buildsystem=makefile
-- 
1.7.4.4



smime.p7s
Description: S/MIME Cryptographic Signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-multimedia-maintainers


freecycle: Preparations for the removal of the KDE3 and Qt3 libraries

2011-05-03 Thread Alessio Treglia
Hi Gürkan,

 It doesn't look like it will be ported to qt4 right now. If you want to do it 
 go
 ahead, otherwise the package should be removed.

unfortunately yes, it should be removed.
Could you file a proper bug to ask FTP-masters to do the job?

Thanks in advance.

-- 
Alessio Treglia          | www.alessiotreglia.com
Debian Developer         | ales...@debian.org
Ubuntu Core Developer    | quadris...@ubuntu.com
0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0

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


Re: freecycle: Preparations for the removal of the KDE3 and Qt3 libraries

2011-05-03 Thread Paul Brossier
Hi all,

I will file the bug.

cheers, Paul

On 03/05/11 10:18, Alessio Treglia wrote:
 Hi Gürkan,
 
 It doesn't look like it will be ported to qt4 right now. If you want to do 
 it go
 ahead, otherwise the package should be removed.
 
 unfortunately yes, it should be removed.
 Could you file a proper bug to ask FTP-masters to do the job?
 
 Thanks in advance.
 


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


Processing of jack-keyboard_2.5-3_amd64.changes

2011-05-03 Thread Debian FTP Masters
jack-keyboard_2.5-3_amd64.changes uploaded successfully to localhost
along with the files:
  jack-keyboard_2.5-3.dsc
  jack-keyboard_2.5-3.debian.tar.gz
  jack-keyboard_2.5-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/mailman/listinfo/pkg-multimedia-maintainers


Bug#625316: crtmpserver: ftbfs with gcc-4.6 -Werror

2011-05-03 Thread Matthias Klose
Package: crtmpserver
Version: 0.0~dfsg+svn421-1
Severity: important
Tags: wheezy sid
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.6 ftbfs-werror

This package builds with -Werror, and GCC 4.6 triggers new warnings
which will make the package fail to build.  Currently a Debian patch
just passes
-Wno-error=unused-but-set-variable and
-Wno-error=unused-but-set-parameter
to avoid build failures, but this patch will be reverted with the
GCC 4.6.1 release, and the severity of the report will be raised.

The full build log can be found at:
http://people.debian.org/~doko/tmp/werror/crtmpserver_0.0~dfsg+svn421-1_lsid64.buildlog
The last lines of the build log are at the end of this report.




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


Bug#625318: dirac: ftbfs with gcc-4.6 -Werror

2011-05-03 Thread Matthias Klose
Package: dirac
Version: 1.0.2-3
Severity: important
Tags: wheezy sid
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.6 ftbfs-werror

This package builds with -Werror, and GCC 4.6 triggers new warnings
which will make the package fail to build.  Currently a Debian patch
just passes
-Wno-error=unused-but-set-variable and
-Wno-error=unused-but-set-parameter
to avoid build failures, but this patch will be reverted with the
GCC 4.6.1 release, and the severity of the report will be raised.

The full build log can be found at:
http://people.debian.org/~doko/tmp/werror/dirac_1.0.2-3_lsid64.buildlog
The last lines of the build log are at the end of this report.




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


jack-keyboard_2.5-3_amd64.changes ACCEPTED into unstable

2011-05-03 Thread Debian FTP Masters



Accepted:
jack-keyboard_2.5-3.debian.tar.gz
  to main/j/jack-keyboard/jack-keyboard_2.5-3.debian.tar.gz
jack-keyboard_2.5-3.dsc
  to main/j/jack-keyboard/jack-keyboard_2.5-3.dsc
jack-keyboard_2.5-3_amd64.deb
  to main/j/jack-keyboard/jack-keyboard_2.5-3_amd64.deb


Override entries for your package:
jack-keyboard_2.5-3.dsc - source sound
jack-keyboard_2.5-3_amd64.deb - optional sound

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


Thank you for your contribution to Debian.

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


Processing of lv2core_4.0-6_amd64.changes

2011-05-03 Thread Debian FTP Masters
lv2core_4.0-6_amd64.changes uploaded successfully to localhost
along with the files:
  lv2core_4.0-6.dsc
  lv2core_4.0-6.debian.tar.gz
  lv2core_4.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/mailman/listinfo/pkg-multimedia-maintainers


lv2core_4.0-6_amd64.changes ACCEPTED into unstable

2011-05-03 Thread Debian FTP Masters



Accepted:
lv2core_4.0-6.debian.tar.gz
  to main/l/lv2core/lv2core_4.0-6.debian.tar.gz
lv2core_4.0-6.dsc
  to main/l/lv2core/lv2core_4.0-6.dsc
lv2core_4.0-6_amd64.deb
  to main/l/lv2core/lv2core_4.0-6_amd64.deb


Override entries for your package:
lv2core_4.0-6.dsc - source sound
lv2core_4.0-6_amd64.deb - optional sound

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


Thank you for your contribution to Debian.

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


Bug#625403: phat: ftbfs with gcc-4.6 -Werror

2011-05-03 Thread Matthias Klose
Package: phat
Version: 0.4.1-2
Severity: important
Tags: wheezy sid
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.6 ftbfs-werror

This package builds with -Werror, and GCC 4.6 triggers new warnings
which will make the package fail to build.  Currently a Debian patch
just passes
-Wno-error=unused-but-set-variable and
-Wno-error=unused-but-set-parameter
to avoid build failures, but this patch will be reverted with the
GCC 4.6.1 release, and the severity of the report will be raised.

The full build log can be found at:
http://people.debian.org/~doko/tmp/werror/phat_0.4.1-2_lsid64.buildlog
The last lines of the build log are at the end of this report.




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


Bug#625424: specimen: ftbfs with gcc-4.6 -Werror

2011-05-03 Thread Matthias Klose
Package: specimen
Version: 0.5.2rc3-2
Severity: important
Tags: wheezy sid
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.6 ftbfs-werror

This package builds with -Werror, and GCC 4.6 triggers new warnings
which will make the package fail to build.  Currently a Debian patch
just passes
-Wno-error=unused-but-set-variable and
-Wno-error=unused-but-set-parameter
to avoid build failures, but this patch will be reverted with the
GCC 4.6.1 release, and the severity of the report will be raised.

The full build log can be found at:
http://people.debian.org/~doko/tmp/werror/specimen_0.5.2rc3-2_lsid64.buildlog
The last lines of the build log are at the end of this report.




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


Re: Bug#623682: [PATCH 2/3] use source format 3.0 (quilt)

2011-05-03 Thread Reinhard Tartler
On Tue, May 03, 2011 at 02:22:33 (CEST), Jonathan Nieder wrote:

 Allow dpkg-source to apply patches when unpacking the source.  We no
 longer need to keep track of whether the source is patched or not, and
 quilt is no longer required at build time.

 This works very nicely with dpkg-dev version 1.15.5.4 (2009-12-07) or
 1.14.28 (2010-01-03) and later.  In particular, since the modified
 files on't need to be touched at build time, it avoids unnecessary
 trouble when using make, git diff, git reset --hard, git
 merge, and other tools.

Well, this commit basically applies all patches to the source. IME, this
causes major pain with git-buildpackage espc. when merging new upstream
versions.

Switching to Source Format 3.0 as per team rules is fine OTOH.


 Signed-off-by: Jonathan Nieder jrnie...@gmail.com
 ---
  Doxyfile |2 +-
  debian/changelog |1 +
  debian/control   |1 -
  debian/rules |9 +++--
  debian/source/format |2 +-
  libavcodec/avcodec.h |2 +-
  libavcodec/utils.c   |2 +-
  libavcodec/version.h |3 +++
  8 files changed, 11 insertions(+), 11 deletions(-)

 diff --git a/Doxyfile b/Doxyfile
 index 5d80a2b..d7a550e 100644
 --- a/Doxyfile
 +++ b/Doxyfile
 @@ -563,7 +563,7 @@ RECURSIVE  = YES
  # excluded from the INPUT source files. This way you can easily exclude a
  # subdirectory from a directory tree whose root is specified with the INPUT 
 tag.
  
 -EXCLUDE=
 +EXCLUDE= debian debian-shared debian-static debian-cmov .pc 
 .git
  
  # The EXCLUDE_SYMLINKS tag can be used select whether or not files or
  # directories that are symbolic links (a Unix filesystem feature) are 
 excluded
 diff --git a/debian/changelog b/debian/changelog
 index dc47350..0a70434 100644
 --- a/debian/changelog
 +++ b/debian/changelog
 @@ -3,6 +3,7 @@ libav (4:0.7~b1-2.1) local; urgency=low
* only install doc/APIChanges in *-dev and libav-doc packages
* move note on source package lineage to README.Debian
* install NEWS.Debian in libavcodec-dev
 +  * use dpkg source format 3.0 (quilt)
  
   -- Jonathan Nieder jrnie...@gmail.com  Mon, 02 May 2011 19:10:14 -0500
  
 diff --git a/debian/control b/debian/control
 index ffe607c..59ba400 100644
 --- a/debian/control
 +++ b/debian/control
 @@ -38,7 +38,6 @@ Build-Depends: debhelper (= 7),
   libxext-dev,
   libxfixes-dev,
   libxvmc-dev,
 - quilt,
   texi2html,
   yasm [amd64 i386 kfreebsd-amd64 kfreebsd-i386 mips mipsel s390 sparc 
 powerpc],
   zlib1g-dev
 diff --git a/debian/rules b/debian/rules
 index 67db8aa..d883601 100755
 --- a/debian/rules
 +++ b/debian/rules
 @@ -1,7 +1,5 @@
  #!/usr/bin/make -f
  
 -include /usr/share/quilt/quilt.make
 -
  EPOCH=4:
  DEB_SOURCE := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p')
  DEB_VERSION := $(shell dpkg-parsechangelog | sed -n 's/^Version: //p')
 @@ -61,12 +59,11 @@ build: build-stamp
  build-stamp: $(addprefix build-stamp-, $(FLAVORS)) 
 debian-shared/tools/qt-faststart
   touch $@
  
 -clean: clean-real unpatch
 -clean-real:
 +clean:
   dh_testdir
   dh_testroot
   rm -f build-stamp $(addprefix build-stamp-, $(FLAVORS)) \
 - $(addprefix configure-stamp-, $(FLAVORS)) patch-stamp \
 + $(addprefix configure-stamp-, $(FLAVORS)) \
   build-doxy-stamp
   rm -rf $(addprefix debian-, $(FLAVORS)) doxy
   dh_clean
 @@ -153,7 +150,7 @@ binary-arch: build install codecs.txt formats.txt
  binary: binary-indep binary-arch
  
  .PHONY: build $(addprefix build-, $(FLAVORS)) build-doxy \
 - clean clean-real \
 + clean \
   configure $(addprefix configure-, $(FLAVORS)) \
   binary binary-indep binary-arch \
   install \
 diff --git a/debian/source/format b/debian/source/format
 index d3827e7..163aaf8 100644
 --- a/debian/source/format
 +++ b/debian/source/format
 @@ -1 +1 @@
 -1.0
 +3.0 (quilt)
 diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
 index df4e617..9d85f28 100644
 --- a/libavcodec/avcodec.h
 +++ b/libavcodec/avcodec.h
 @@ -3684,7 +3684,7 @@ int avcodec_check_dimensions(void *av_log_ctx, unsigned 
 int w, unsigned int h);
  
  enum PixelFormat avcodec_default_get_format(struct AVCodecContext *s, const 
 enum PixelFormat * fmt);
  
 -#if LIBAVCODEC_VERSION_MAJOR  53
 +#if FF_API_THREAD_INIT
  /**
   * @deprecated Set s-thread_count before calling avcodec_open() instead of 
 calling this.
   */
 diff --git a/libavcodec/utils.c b/libavcodec/utils.c
 index 6d31254..49ffa70 100644
 --- a/libavcodec/utils.c
 +++ b/libavcodec/utils.c
 @@ -1287,7 +1287,7 @@ void ff_thread_await_progress(AVFrame *f, int progress, 
 int field)
  
  #endif
  
 -#if LIBAVCODEC_VERSION_MAJOR  53
 +#if FF_API_THREAD_INIT
  
  int avcodec_thread_init(AVCodecContext *s, int thread_count)
  {
 diff --git a/libavcodec/version.h b/libavcodec/version.h
 index 7e53474..1ddee2c 100644
 --- a/libavcodec/version.h
 +++ b/libavcodec/version.h
 @@ -86,5 +86,8 @@
  #ifndef 

Processed: affects 624775

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

 affects 624775 serd
Bug #624775 [lv2core] lv2core: Buffer overflow in serd-0.1.0.c
Added indication that 624775 affects serd
 thanks
Stopping processing here.

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


Processed: tagging 624775

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

 tags 624775 + pending
Bug #624775 [lv2core] lv2core: Buffer overflow in serd-0.1.0.c
Added tag(s) pending.
 thanks
Stopping processing here.

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


Bug#624775: marked as done (lv2core: Buffer overflow in serd-0.1.0.c)

2011-05-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 May 2011 11:02:50 +
with message-id e1qhdns-0005qk...@franck.debian.org
and subject line Bug#624775: fixed in lv2core 4.0-6
has caused the Debian Bug report #624775,
regarding lv2core: Buffer overflow in serd-0.1.0.c
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.)


-- 
624775: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624775
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: lv2core
Version: 4.0-5
Severity: normal
Tags: patch


This is a bug against the SOURCE package from Debian Sid so my distribution 
is irrelevant.

When building lv2core-4.0-5 from sid, I noticed a warning about snprintf 
being guaranteed to overflow in write_text. The problem seems to be that the 
local variable `escape' is declared as char [10], then used in snprintf as 
if it had 11 characters.

Attached patch trivially fixes that.

-- System Information:
Debian Release: squeeze/sid
  APT prefers lucid-updates
  APT policy: (500, 'lucid-updates'), (500, 'lucid-security'), (500, 
'lucid-proposed'), (500, 'lucid-backports'), (500, 'lucid')
Architecture: i386 (i686)

Kernel: Linux 2.6.31-11-rt (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- a/serd-0.1.0.c
+++ b/serd-0.1.0.c
@@ -2313,7 +2313,7 @@
 write_text(SerdWriter writer, TextContext ctx,
const uint8_t* utf8, size_t n_bytes, uint8_t terminator)
 {
-	char escape[10] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
+	char escape[15] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
 	for (size_t i = 0; i  n_bytes;) {
 		uint8_t in = utf8[i++];
 		switch (in) {
---End Message---
---BeginMessage---
Source: lv2core
Source-Version: 4.0-6

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

lv2core_4.0-6.debian.tar.gz
  to main/l/lv2core/lv2core_4.0-6.debian.tar.gz
lv2core_4.0-6.dsc
  to main/l/lv2core/lv2core_4.0-6.dsc
lv2core_4.0-6_amd64.deb
  to main/l/lv2core/lv2core_4.0-6_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 624...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jaromír Mikeš mira.mi...@seznam.cz (supplier of updated lv2core 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: SHA1

Format: 1.8
Date: Tue, 03 May 2011 11:47:20 +0200
Source: lv2core
Binary: lv2core
Architecture: source amd64
Version: 4.0-6
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description: 
 lv2core- LV2 audio plugin specification
Closes: 624775
Changes: 
 lv2core (4.0-6) unstable; urgency=low
 .
   * Added patch to fix snprintf overflow (Closes: #624775)
 - thanks to Dan Muresan danmb...@yahoo.ro
   * Bump Standards
Checksums-Sha1: 
 eb8e858454c96283ed6b4ecc857ae072d76e01f0 1304 lv2core_4.0-6.dsc
 3e582001724c383e21e7494b5afca652b66273c6 8192 lv2core_4.0-6.debian.tar.gz
 cde5c237d58cec1b741f0dccd8a22f3bc0b73304 50758 lv2core_4.0-6_amd64.deb
Checksums-Sha256: 
 d44c424080677e18abda6d904c767262ff2aedae844a16fc129994b52e796e20 1304 
lv2core_4.0-6.dsc
 75a1f05a09918dff059a96709893b359c550c9aef607184cf493742b7e413622 8192 
lv2core_4.0-6.debian.tar.gz
 a147cf1924234a6e30954ccb473ee623d7422e2a5160ccfcf951cbd3890fcdf5 50758 
lv2core_4.0-6_amd64.deb
Files: 
 89a466ee5267afe90cc4544edb573bb1 1304 sound optional lv2core_4.0-6.dsc
 dc360cc9940ff65f3f490bd2da165272 8192 sound optional 
lv2core_4.0-6.debian.tar.gz
 383acfb7460f0108350658bc0218b583 50758 sound optional lv2core_4.0-6_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk2/3goACgkQRdSMfNz8P9CfCACeOX5/pL7FqyHr47DsL4/yRT8H
F5cAnj4WRyBZs8aS2gMStIiVWvn5J3NB
=L6tO
-END PGP SIGNATURE-


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


Bug#625282: marked as done (jack-keyboard: Pianola mode (MIDI-in) broken wrt channel numbers)

2011-05-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 May 2011 10:48:19 +
with message-id e1qhd9p-0004bo...@franck.debian.org
and subject line Bug#625282: fixed in jack-keyboard 2.5-3
has caused the Debian Bug report #625282,
regarding jack-keyboard: Pianola mode (MIDI-in) broken wrt channel numbers
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.)


-- 
625282: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=625282
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: jack-keyboard
Version: 2.5-2
Severity: normal
Tags: patch

Per the manual page, jack-keyboard should pass through incoming MIDI 
messages but replace the channel number with its own. It only recognizes
incoming messages sent on MIDI channel 0 however, and does not rewrite
the channel at all.


-- System Information:
Debian Release: squeeze/sid
  APT prefers lucid-updates
  APT policy: (500, 'lucid-updates'), (500, 'lucid-security'), (500, 
'lucid-proposed'), (500, 'lucid-backports'), (500, 'lucid')
Architecture: i386 (i686)

Kernel: Linux 2.6.31-11-rt (SMP w/2 CPU cores; PREEMPT)
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 jack-keyboard depends on:
ii  jackd  5danmppa1~lucid1  JACK Audio Connection Kit (default
ii  libc6  2.11.1-0ubuntu7.8 Embedded GNU C Library: Shared lib
ii  libgli 2.24.1-0ubuntu1   The GLib library of C routines
ii  libgtk 2.20.1-0ubuntu2   The GTK+ graphical user interface 
ii  libjac 1:0.120.1+svn4142-2   JACK Audio Connection Kit (librari
ii  liblas 0.6.0~rc2-1ubuntu2danmppa3~lucid1 LASH Audio Session Handler (LASH) 
ii  libx11 2:1.3.2-1ubuntu3  X11 client-side library

Versions of packages jack-keyboard recommends:
ii  a2jmidid  6-0ubuntu2 daemon for exposing legacy ALSA MI
ii  qjackctl  0.3.7-4danmppa1~lucid1 User interface for controlling the

Versions of packages jack-keyboard suggests:
ii  ghoste 20100923-0ubuntu1danmppa2~lucid1  A graphical DSSI plugin host
ii  lashd  0.6.0~rc2-1ubuntu2danmppa3~lucid1 LASH Audio Session Handler (LASH) 
ii  whysyn 20090403-1ubuntu1 DSSI Soft Synth Interface

-- no debconf information
From 724fa8746dc00c32db9dfadfcfe9fa46fa6ed95e Mon Sep 17 00:00:00 2001
From: Dan A. Muresan danm...@gmail.com
Date: Tue, 3 May 2011 01:12:17 +0300
Subject: [PATCH] Fix pianola mode (MIDI-in).

Per the manual page, jack-keyboard should pass through incoming MIDI
messages but replace the channel number with its own. The code only
recognized incoming messages sent on MIDI channel 0 however, and did
not rewrite the channel at all.
---
 src/jack-keyboard.c |   14 ++
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/jack-keyboard.c b/src/jack-keyboard.c
index 5f8bc7c..70c1027 100644
--- a/src/jack-keyboard.c
+++ b/src/jack-keyboard.c
@@ -199,23 +199,29 @@ process_received_message_async(gpointer evp)
 {
int i;
struct MidiMessage *ev = (struct MidiMessage *)evp;
+   int b0 = ev-data [0], b1 = ev-data [1];
 
-   if (ev-data[0] == MIDI_RESET || (ev-data[0] == MIDI_CONTROLLER 
-   (ev-data[1] == MIDI_ALL_NOTES_OFF || ev-data[1] == 
MIDI_ALL_SOUND_OFF))) {
+   /* Strip channel from channel messages */
+   if (b0 = 0x80  b0 = 0xEF)
+   b0 = b0  0xF0;
+   
+   if (b0 == MIDI_RESET || (b0 == MIDI_CONTROLLER 
+   (b1 == MIDI_ALL_NOTES_OFF || b1 == MIDI_ALL_SOUND_OFF))) {
 
for (i = 0; i  NNOTES; i++) {
piano_keyboard_set_note_off(keyboard, i);
}
}
 
-   if (ev-data[0] == MIDI_NOTE_ON) {
+   if (b0 == MIDI_NOTE_ON) {
piano_keyboard_set_note_on(keyboard, ev-data[1]);
}
 
-   if (ev-data[0] == MIDI_NOTE_OFF) {
+   if (b0 == MIDI_NOTE_OFF) {
piano_keyboard_set_note_off(keyboard, ev-data[1]);
}
 
+   ev-data [0] = b0 | channel;
queue_message(ev);
 
return FALSE;
-- 
1.7.0.4

---End Message---
---BeginMessage---
Source: jack-keyboard
Source-Version: 2.5-3

We believe that the bug you reported is fixed in the latest version of
jack-keyboard, which is due to be installed in the Debian FTP archive:

jack-keyboard_2.5-3.debian.tar.gz
  to main/j/jack-keyboard/jack-keyboard_2.5-3.debian.tar.gz
jack-keyboard_2.5-3.dsc
  to main/j/jack-keyboard/jack-keyboard_2.5-3.dsc
jack-keyboard_2.5-3_amd64.deb
  to main/j/jack-keyboard/jack-keyboard_2.5-3_amd64.deb



A summary 

dmedia_0.3.0~repack-2_i386.changes ACCEPTED into unstable

2011-05-03 Thread Debian FTP Masters



Accepted:
dmedia_0.3.0~repack-2.debian.tar.gz
  to main/d/dmedia/dmedia_0.3.0~repack-2.debian.tar.gz
dmedia_0.3.0~repack-2.dsc
  to main/d/dmedia/dmedia_0.3.0~repack-2.dsc
dmedia_0.3.0~repack-2_all.deb
  to main/d/dmedia/dmedia_0.3.0~repack-2_all.deb
python-dmedia_0.3.0~repack-2_all.deb
  to main/d/dmedia/python-dmedia_0.3.0~repack-2_all.deb


Override entries for your package:
dmedia_0.3.0~repack-2.dsc - source video
dmedia_0.3.0~repack-2_all.deb - optional video
python-dmedia_0.3.0~repack-2_all.deb - optional python

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


Thank you for your contribution to Debian.

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


Bug#622331: marked as done (python-dmedia: Package uninstallable on Sid)

2011-05-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 May 2011 11:17:22 +
with message-id e1qhdbw-00079o...@franck.debian.org
and subject line Bug#622331: fixed in dmedia 0.3.0~repack-2
has caused the Debian Bug report #622331,
regarding python-dmedia: Package uninstallable on Sid
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.)


-- 
622331: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622331
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-dmedia
Severity: grave
Tags: sid
Justification: renders package unusable


Package is uninstallable on Sid because of uninstallable dependencies.

I am the package maintainer and this bug has been filed to prevent migration to 
Testing. I am working on a fix.


-- System Information:
Debian Release: squeeze/sid
  APT prefers natty-updates
  APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500, 'natty')
Architecture: i386 (i686)

Kernel: Linux 2.6.38-8-generic (SMP w/2 CPU cores)
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 python-dmedia depends on:
ii  gir1.2-webkit-1.0   1.3.13-0ubuntu1  GObject introspection data for the
ii  libimage-exiftool-perl  8.15-1   Library and program to read and wr
ii  libjs-mootools  1.2.5~debian1-2  compact JavaScript framework
ii  python  2.7.1-0ubuntu5   interactive high-level object-orie
ii  python-desktopcouch-rec 1.0.7-0ubuntu1   Desktop CouchDB Records API
ii  python-genshi   0.6-1ubuntu2 Python XML-based template engine
ii  python-gtk2 2.22.0-0ubuntu1  Python bindings for the GTK+ widge
ii  python-notify   0.1.1-2build4Python bindings for libnotify
ii  python-paste1.7.5.1-1ubuntu1 tools for using a Web Server Gatew
ii  python-support  1.0.10ubuntu3automated rebuilding support for P
ii  python-webkit   1.1.8-1ubuntu2   WebKit/Gtk Python bindings
ii  python-xdg  0.19-2ubuntu1Python library to access freedeskt
ii  totem   2.32.0-0ubuntu10 A simple media player for the GNOM

python-dmedia recommends no packages.

Versions of packages python-dmedia suggests:
ii  python-appindicator   0.3.0-0ubuntu1 Python bindings for libappindicato


---End Message---
---BeginMessage---
Source: dmedia
Source-Version: 0.3.0~repack-2

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

dmedia_0.3.0~repack-2.debian.tar.gz
  to main/d/dmedia/dmedia_0.3.0~repack-2.debian.tar.gz
dmedia_0.3.0~repack-2.dsc
  to main/d/dmedia/dmedia_0.3.0~repack-2.dsc
dmedia_0.3.0~repack-2_all.deb
  to main/d/dmedia/dmedia_0.3.0~repack-2_all.deb
python-dmedia_0.3.0~repack-2_all.deb
  to main/d/dmedia/python-dmedia_0.3.0~repack-2_all.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 622...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bilal Akhtar bilalakh...@ubuntu.com (supplier of updated dmedia 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: SHA1

Format: 1.8
Date: Mon, 02 May 2011 13:54:44 +0530
Source: dmedia
Binary: python-dmedia dmedia
Architecture: source all
Version: 0.3.0~repack-2
Distribution: unstable
Urgency: high
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Bilal Akhtar bilalakh...@ubuntu.com
Description: 
 dmedia - A distributed media library (CLI interface)
 python-dmedia - A distributed media library (Python modules)
Closes: 622331
Changes: 
 dmedia (0.3.0~repack-2) unstable; urgency=high
 .
   * debian/control:
 - Remove dependencies on gir1.0-* and replace it with gir1.2-* as
   gir1.0-* packages no longer exist. (Closes: #622331)
 - Depend on desktopcouch directly as python-desktopcouch-records
   is now a virtual package.
 - Bump Standards-Version to 3.9.2 (no changes needed).
Checksums-Sha1: 
 a02ea5e0c2ab6c1e5f12f612abe3153ef7dcd63a 1424 dmedia_0.3.0~repack-2.dsc
 dc567da085ccce8dce3d8c5dfec1bf72fa4bde06 15507 
dmedia_0.3.0~repack-2.debian.tar.gz
 1252121f13a1e6a6232fc3867affd0093837920f 236202 
python-dmedia_0.3.0~repack-2_all.deb
 

Re: Bug#623682: [PATCH/RFC 0/3] Re: libavcodec-dev: please mention the fate of CODEC_TYPE_AUDIO macros in NEWS or changelog

2011-05-03 Thread Reinhard Tartler
On Tue, May 03, 2011 at 02:18:16 (CEST), Jonathan Nieder wrote:

 Hi,

 Reinhard Tartler wrote:

* don't try to install non-existing documentation, fixes FTBFS on powerpc
* add NEWS.Debian file
* install doc/APIChanges and refer to them in NEWS.Debian (Closes: 
 #623682)
* readd deprecated avcodec_thread_init in libavformat

 Thanks for this.  I tried the package and it seems that NEWS.Debian
 isn't actually installed.  While working on that, I picked a few other
 nits:

  * the APIChanges should only be relevant to people using the
development libraries, so I think it makes more sense to only
install them to lib*-dev and libav-doc

  * using source format 3.0 (quilt), so git reset --hard and
other habits don't produce confusing results

  * allowing debian/rules clean as a non-root user.  In
modern times, most people don't run debian/rules binary as true
root anyway, and in the worst case debian/rules clean will error
out and the user will know what to do (just a pet peave).

 If you have any complaints, I'd be glad to roll a new version of the
 patches addressing them.

Thanks, I've applied (most) of them mostly unmodified.

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4

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


Bug#625056: FTBFS

2011-05-03 Thread Jean-Louis Dupond

This can be solved by adding the following to debian/rules:

CPPFLAGS+=-DBOOST_FILESYSTEM_VERSION=2



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


Processed: your mail

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

 affects 624775 + serd
Bug #624775 {Done: Jaromír Mikeš mira.mi...@seznam.cz} [lv2core] lv2core: 
Buffer overflow in serd-0.1.0.c
Ignoring request to set affects of bug 624775 to the same value previously set

 thanks
Stopping processing here.

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


Processed: tagging 625056

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

 tags 625056 + patch
Bug #625056 [src:toonloop] toonloop: FTBFS: saverworker.cpp:80:54: error: no 
matching function for call to 'boost::filesystem3::path::path(char [(((long 
unsigned int)(((long int)BUFSIZE) + -0x1)) + 1)])'
Added tag(s) patch.
 thanks
Stopping processing here.

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


Processing of serd_0~svn155-1_amd64.changes

2011-05-03 Thread Debian FTP Masters
serd_0~svn155-1_amd64.changes uploaded successfully to localhost
along with the files:
  serd_0~svn155-1.dsc
  serd_0~svn155.orig.tar.bz2
  serd_0~svn155-1.debian.tar.gz
  libserd-dev_0~svn155-1_all.deb
  libserd-0-0_0~svn155-1_amd64.deb
  serdi_0~svn155-1_amd64.deb
  serd-dbg_0~svn155-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/mailman/listinfo/pkg-multimedia-maintainers


serd_0~svn155-1_amd64.changes is NEW

2011-05-03 Thread Debian FTP Masters
(new) libserd-0-0_0~svn155-1_amd64.deb optional libs
lightweight RDF syntax library
 Serd is a lightweight C library for RDF syntax which supports reading
 and writing Turtle and NTriples.
 .
 Serd is not intended to be a swiss-army knife of RDF syntax, but rather
 is suited to resource limited applications, or situations where a simple
 reader/writer with minimal dependencies is ideal (e.g. in LV2 hosts or
 plugins).
 .
 Serd is:
  * small: Serd is implemented in under 2500 lines1 of standard C code.
  * portable and dependency-free: Serd uses only the C standard library,
and has no external dependencies, making it a lightweight dependency
in every sense.
  * fast and lightweight: Serd (and the included serdi tool) can be used
to stream abbreviated Turtle (unlike many other tools which can not
stream since they must first build an internal model to abbreviate).
In other words, Serd can re-serialise an unbounded amount of Turtle
using a fixed amount of memory, preserving the abbreviations in the
input.
  * conformant and well-tested: Serd is written to the Turtle, NTriples
and URI specifications, and includes a comprehensive test suite which
includes all the normative examples from the Turtle specification, all
the normal examples from the URI specification, and additional tests
added specifically for Serd. The test suite has over 96% code coverage
(by line), and runs with zero memory errors or leaks.
libserd-dev_0~svn155-1_all.deb
  to main/s/serd/libserd-dev_0~svn155-1_all.deb
serd-dbg_0~svn155-1_amd64.deb
  to main/s/serd/serd-dbg_0~svn155-1_amd64.deb
serd_0~svn155-1.debian.tar.gz
  to main/s/serd/serd_0~svn155-1.debian.tar.gz
serd_0~svn155-1.dsc
  to main/s/serd/serd_0~svn155-1.dsc
serd_0~svn155.orig.tar.bz2
  to main/s/serd/serd_0~svn155.orig.tar.bz2
serdi_0~svn155-1_amd64.deb
  to main/s/serd/serdi_0~svn155-1_amd64.deb
Changes: serd (0~svn155-1) unstable; urgency=low
 .
  * New upstream release:
- Re-licensed under ISC license terms, update debian/copyright.
  * Move from libserd0 to libserd-0-0.
  * Add patch to fix snprintf overflow (Closes: #624775).
  * Refresh 1001-dont_run_ldconfig.patch.
  * debian/rules: Explicitly pass --mandir to configure.
  * debian/get-svn-source.sh
- Abort on errors.
- Append upstream versioning to the directory's name.
  * Bump Standards.


Override entries for your package:
libserd-dev_0~svn155-1_all.deb - optional libdevel
serd-dbg_0~svn155-1_amd64.deb - extra debug
serd_0~svn155-1.dsc - source libs
serdi_0~svn155-1_amd64.deb - optional text

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


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.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

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


LiVES error

2011-05-03 Thread salsaman
http://qa.debian.org/debcheck.php?dist=unstablepackage=lives

Package is optional and has a Depends on libavc1394-0

Incorrect. LiVES *recommends* libavc1394, but will function just fine
without it.


Please correct this when possible.


Regards,
Salsaman.



http://lives.sourceforge.net
https://www.ohloh.net/accounts/salsaman

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


RFS: lebiniou, lebiniou-data

2011-05-03 Thread Olivier Girondel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Redirecting here following advice from mentors, can
the multimedia team review these packages ?

Thanks,

=

Dear mentors,

I am looking for a sponsor for my packages lebiniou and
lebiniou-data.

 Package name: lebiniou, lebiniou-data
 Version : 3.8-1
 Upstream Author : Olivier Girondel oliv...@biniou.info
 URL : http://biniou.net
 License : GPLv2+
 Section : graphics

They build these binary packages:
lebiniou  - displays images that evolve with sound
lebiniou-data - Datafiles for Le Biniou

The packages appear to be lintian clean.

The upload would fix these bugs: 610042, 620899

My motivation for maintaining these packages is: I'm upstream for this
software, which has more than fifteen years of existence running on
GNU/Linux-based systems (esp. Debian), and *BSD. It's been appreciated
and used as a VJing tool, and I think packaging it will make the
procedures smoother for users as well as broadening its audience.

The packages can be found on mentors.debian.net:
- - URL: http://mentors.debian.net/debian/pool/main/l/lebiniou
- - Source repository: deb-src http://mentors.debian.net/debian unstable
main contrib non-free
- - dget
http://mentors.debian.net/debian/pool/main/l/lebiniou/lebiniou_3.8-1.dsc

and
- - URL: http://mentors.debian.net/debian/pool/main/l/lebiniou-data
- - Source repository: deb-src http://mentors.debian.net/debian unstable
main contrib non-free
- - dget
http://mentors.debian.net/debian/pool/main/l/lebiniou-data/lebiniou-data_3.8-1.dsc

I would be glad if someone uploaded these packages for me.

Kind regards
 Olivier Girondel
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk3AMukACgkQpqVXaJzJYNJYSgCfcAiZM5yw0tOkOXC//pLyAhgx
W60Aniu8HinrD/ZFRL6NQZ193D0M1qAo
=LQjZ
-END PGP SIGNATURE-

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


Re: RFS: lebiniou, lebiniou-data

2011-05-03 Thread Maia Kozheva
The package looks fine to me, but IANADD (I am not a DD).

One thing I'd possibly change is specifying the packaging license as GPL-2+, 
same as upstream, instead of the more restrictive GPL-2.


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/mailman/listinfo/pkg-multimedia-maintainers


Processed: tagging 625403

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

 tags 625403 + pending
Bug #625403 [phat] phat: ftbfs with gcc-4.6 -Werror
Added tag(s) pending.
 thanks
Stopping processing here.

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


Processed (with 3 errors): tagging as pending bugs that are closed by packages in NEW

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

 # Tue May  3 20:03:10 UTC 2011
 # Tagging as pending bugs that are closed by packages in NEW
 # http://ftp-master.debian.org/new.html
 #
 # Source package in NEW: ampliconnoise
 tags 624362 + pending
Bug #624362 [wnpp] ITP: ampliconnoise -- clean up high-throughput sequencing 
data
Added tag(s) pending.
 # Source package in NEW: alsa-utils
 tags 617347 + pending
Bug #617347 [alsa-utils] alsa-utils: Please add Master Front to list of 
controls to be unmuted
Added tag(s) pending.
 # Source package in NEW: serd
 tags 624775 + pending
Bug #624775 {Done: Jaromír Mikeš mira.mi...@seznam.cz} [lv2core] lv2core: 
Buffer overflow in serd-0.1.0.c
Added tag(s) pending.
 # Source package in NEW: parrot
 tags 612664 + pending
Bug #612664 [parrot] parrot: New upstream release (3.0.0) required to build 
latest rakudo
Added tag(s) pending.
 # Source package in NEW: parrot
 tags 610994 + pending
Bug #610994 [parrot-devel] parrot-devel: set proper mandir during build
Added tag(s) pending.
 # Source package in NEW: imagemagick
 tags 601824 + pending
Failed to alter tags of Bug 601824: Not altering archived bugs; see unarchive.

 # Source package in NEW: imagemagick
 tags 579775 + pending
Failed to alter tags of Bug 579775: Not altering archived bugs; see unarchive.

 # Source package in NEW: imagemagick
 tags 587227 + pending
Failed to alter tags of Bug 587227: Not altering archived bugs; see unarchive.

 # Source package in NEW: ruby-bcrypt
 tags 623597 + pending
Bug #623597 [wnpp] ITP: bcrypt-ruby -- OpenBSD's bcrypt() password hashing 
algorithm.
Added tag(s) pending.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
623597: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=623597
612664: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612664
579775: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=579775
601824: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601824
617347: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617347
610994: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=610994
624775: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624775
587227: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587227
624362: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624362
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/mailman/listinfo/pkg-multimedia-maintainers


Creox's port to KDE 4

2011-05-03 Thread Ana Guerrero

Hi,

Somebody left this comment on my blog about a KDE4's port of creox.

Ana


http://ekaia.org/blog/2011/03/21/small-applications-missing-in-kde-4/#comment-2206

On Tue, May 03, 2011 at 02:20:56PM +, Kasper Laudrup wrote:
 New comment on your post Small applications missing in KDE 4
 Author : Kasper Laudrup 
 E-mail : laudrup AT linuxfan.dk
 URL: http://www.stacktrace.dk
 Comment: 
 Hi all,
 
 I have begun making a port of Creox (real-time guitar effects) for KDE 4.
 
 So far, it compiles and actually runs although a lot of stuff is still 
 missing. I have put the code on Github:
 
 https://github.com/laudrup/Creox4
 
 I hope someone might find this useful, that will probably have great 
 influence on whether I'll continue to work on this.
 

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


Bug#624775: marked as done (lv2core: Buffer overflow in serd-0.1.0.c)

2011-05-03 Thread Debian Bug Tracking System
Your message dated Tue, 03 May 2011 22:06:50 +
with message-id e1qhnk2-0002ww...@franck.debian.org
and subject line Bug#624775: fixed in serd 0~svn155-1
has caused the Debian Bug report #624775,
regarding lv2core: Buffer overflow in serd-0.1.0.c
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.)


-- 
624775: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624775
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: lv2core
Version: 4.0-5
Severity: normal
Tags: patch


This is a bug against the SOURCE package from Debian Sid so my distribution 
is irrelevant.

When building lv2core-4.0-5 from sid, I noticed a warning about snprintf 
being guaranteed to overflow in write_text. The problem seems to be that the 
local variable `escape' is declared as char [10], then used in snprintf as 
if it had 11 characters.

Attached patch trivially fixes that.

-- System Information:
Debian Release: squeeze/sid
  APT prefers lucid-updates
  APT policy: (500, 'lucid-updates'), (500, 'lucid-security'), (500, 
'lucid-proposed'), (500, 'lucid-backports'), (500, 'lucid')
Architecture: i386 (i686)

Kernel: Linux 2.6.31-11-rt (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- a/serd-0.1.0.c
+++ b/serd-0.1.0.c
@@ -2313,7 +2313,7 @@
 write_text(SerdWriter writer, TextContext ctx,
const uint8_t* utf8, size_t n_bytes, uint8_t terminator)
 {
-	char escape[10] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
+	char escape[15] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
 	for (size_t i = 0; i  n_bytes;) {
 		uint8_t in = utf8[i++];
 		switch (in) {
---End Message---
---BeginMessage---
Source: serd
Source-Version: 0~svn155-1

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

libserd-0-0_0~svn155-1_amd64.deb
  to main/s/serd/libserd-0-0_0~svn155-1_amd64.deb
libserd-dev_0~svn155-1_all.deb
  to main/s/serd/libserd-dev_0~svn155-1_all.deb
serd-dbg_0~svn155-1_amd64.deb
  to main/s/serd/serd-dbg_0~svn155-1_amd64.deb
serd_0~svn155-1.debian.tar.gz
  to main/s/serd/serd_0~svn155-1.debian.tar.gz
serd_0~svn155-1.dsc
  to main/s/serd/serd_0~svn155-1.dsc
serd_0~svn155.orig.tar.bz2
  to main/s/serd/serd_0~svn155.orig.tar.bz2
serdi_0~svn155-1_amd64.deb
  to main/s/serd/serdi_0~svn155-1_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 624...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Alessio Treglia ales...@debian.org (supplier of updated serd 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: SHA1

Format: 1.8
Date: Tue, 03 May 2011 13:57:33 +0200
Source: serd
Binary: libserd-dev libserd-0-0 serdi serd-dbg
Architecture: source all amd64
Version: 0~svn155-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 libserd-0-0 - lightweight RDF syntax library
 libserd-dev - lightweight RDF syntax library - development files
 serd-dbg   - lightweight RDF syntax library - debugging symbols
 serdi  - lightweight RDF syntax library - serdi tool
Closes: 624775
Changes: 
 serd (0~svn155-1) unstable; urgency=low
 .
   * New upstream release:
 - Re-licensed under ISC license terms, update debian/copyright.
   * Move from libserd0 to libserd-0-0.
   * Add patch to fix snprintf overflow (Closes: #624775).
   * Refresh 1001-dont_run_ldconfig.patch.
   * debian/rules: Explicitly pass --mandir to configure.
   * debian/get-svn-source.sh
 - Abort on errors.
 - Append upstream versioning to the directory's name.
   * Bump Standards.
Checksums-Sha1: 
 8349b8651443d4d0213d0362e1f5a1f4cefe002d 1293 serd_0~svn155-1.dsc
 6af33544b17c8b5688b8cea135b810b0ede9978b 288413 serd_0~svn155.orig.tar.bz2
 163605d1bed4fb35ea85ff9e42a99c0506b90ff4 4897 serd_0~svn155-1.debian.tar.gz
 0fe1d994b25c74b6d9c86d0dce584a361791c40a 7830 libserd-dev_0~svn155-1_all.deb
 2898bb66b7a100efc655d288a2b62b278ba4fae3 22182 libserd-0-0_0~svn155-1_amd64.deb
 fd4a4a217ac356020b7f579f3f2a7d2ba7c7fa53 8004 serdi_0~svn155-1_amd64.deb
 

Re: [PATCH/RFC 0/3] Re: libavcodec-dev: please mention the fate of CODEC_TYPE_AUDIO macros in NEWS or changelog

2011-05-03 Thread Jonathan Nieder
Reinhard Tartler wrote:

 Thanks, I've applied (most) of them mostly unmodified.

Thanks.  The changes all make sense to me fwiw.

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