Bug#671586: gjacktransport: FTBFS on hurd-i386.

2012-05-04 Thread Cyril Roelandt
Package: gjacktransport
Severity: important
Tags: patch

Dear Maintainer,

gjacktransport FTBFS on hurd-i386 because it uses PATH_MAX unconditionally. The 
attached patch should fix this issue.

WBR,
Cyril Roelandt.

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

Kernel: GNU-Mach 1.3.99/Hurd-0.3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
diff --git a/src/gjack.c b/src/gjack.c
index b7a9026..5915dee 100644
--- a/src/gjack.c
+++ b/src/gjack.c
@@ -16,27 +16,39 @@ extern GtkWidget *window1;
 void dothejack (gboolean onoff);
 
 void status_msg (char *msg) {
-	gchar buf[PATH_MAX];
+	gchar *buf;
 	guint context = 1;
 	GtkWidget *statusbar1;
-	statusbar1=lookup_widget(window1,"statusbar1");
+	size_t size;
 
-	snprintf(buf, PATH_MAX, "%s", msg);
+	statusbar1=lookup_widget(window1,"statusbar1");
+	size = 1+strlen(msg);
+	buf = malloc(size);
+	if (buf == NULL)
+		return;
+	
+	snprintf(buf, size, "%s", msg);
 	gtk_statusbar_pop(GTK_STATUSBAR(statusbar1), context);
 	gtk_statusbar_push(GTK_STATUSBAR(statusbar1), context,  buf);
+	free(buf);
 }
 
 
 void status_printf (const char *format, ...) {
 	va_list arglist;
-	char text[PATH_MAX];
+	char *text;
+	size_t text_size;
 
 	va_start(arglist, format);
-	vsnprintf(text, PATH_MAX, format, arglist);
+	text_size = vsnprintf(NULL, 0, format, arglist);
+	text = malloc(text_size);
+	if (text == NULL)
+		return;
+	vsnprintf(text, text_size, format, arglist);
 	va_end(arglist);
-	text[PATH_MAX -1] =0;
 	
 	status_msg(text);
+	free(text);
 }
 
 /* end status bar */
diff --git a/src/resourceconfig.c b/src/resourceconfig.c
index f63e8f2..6e153d1 100644
--- a/src/resourceconfig.c
+++ b/src/resourceconfig.c
@@ -30,6 +30,10 @@
 # define SYSCFGDIR "/etc"
 #endif
 
+#ifdef __GNU__
+#include 
+#endif
+
 #include 
 #include 
 #include 
@@ -116,6 +120,39 @@ void try_load_rc_file (char *filename) {
 }
 
 void load_rc (void) {
+#ifdef __GNU__
+	char *home;
+	char *filename;
+	size_t size, old_size;
+
+	size = strlen(SYSCFGDIR) + strlen(GJACKTRANSPORTRC) + 2;
+	filename = malloc(size);
+	assert(filename);
+	sprintf(filename, "%s/%s", SYSCFGDIR, GJACKTRANSPORTRC);
+	try_load_rc_file(filename);
+
+	home = getenv("HOME");
+	if (home) {
+		old_size = size;
+		size = strlen(home) + strlen(GJACKTRANSPORTRC) + 2;
+		if (old_size < size) {
+			filename = realloc(filename, size);
+			assert(filename);
+		}
+		sprintf(filename, "%s/.%s", home, GJACKTRANSPORTRC);
+		try_load_rc_file(filename);
+	}
+
+	old_size = size;
+	size = strlen(GJACKTRANSPORTRC) + 2;
+	if (old_size < size) {
+		filename = realloc(filename, size);
+		assert(filename);
+	}
+	sprintf(filename, "./%s", GJACKTRANSPORTRC);
+	try_load_rc_file(filename);
+	free(filename);
+#else
 	char *home;
 	char filename[PATH_MAX];
 	if ((strlen(SYSCFGDIR) + strlen(GJACKTRANSPORTRC) + 2) < PATH_MAX) {
@@ -131,6 +168,7 @@ void load_rc (void) {
 		sprintf(filename, "./%s", GJACKTRANSPORTRC);
 		try_load_rc_file(filename);
 	}
+#endif
 }
 
 /* vi:set ts=8 sts=2 sw=2: */ 
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

mda-lv2_1.0.0~dfsg0-1_amd64.changes ACCEPTED into unstable

2012-05-04 Thread Debian FTP Masters



Accepted:
mda-lv2_1.0.0~dfsg0-1.debian.tar.gz
  to main/m/mda-lv2/mda-lv2_1.0.0~dfsg0-1.debian.tar.gz
mda-lv2_1.0.0~dfsg0-1.dsc
  to main/m/mda-lv2/mda-lv2_1.0.0~dfsg0-1.dsc
mda-lv2_1.0.0~dfsg0-1_amd64.deb
  to main/m/mda-lv2/mda-lv2_1.0.0~dfsg0-1_amd64.deb
mda-lv2_1.0.0~dfsg0.orig.tar.bz2
  to main/m/mda-lv2/mda-lv2_1.0.0~dfsg0.orig.tar.bz2


Changes:
mda-lv2 (1.0.0~dfsg0-1) unstable; urgency=low
 .
  * First upstream stable release.
  * Drop build-dependency on slv2.
  * Replace build-dep on lv2core with lv2-dev.
  * Fix dh_auto_clean rule.
  * Update debian/copyright.
  * Add watch file.
  * Bump Standards.
  * Update Homepage field.


Override entries for your package:
mda-lv2_1.0.0~dfsg0-1.dsc - source sound
mda-lv2_1.0.0~dfsg0-1_amd64.deb - optional sound

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 mda-lv2_1.0.0~dfsg0-1_amd64.changes

2012-05-04 Thread Debian FTP Masters
mda-lv2_1.0.0~dfsg0-1_amd64.changes uploaded successfully to localhost
along with the files:
  mda-lv2_1.0.0~dfsg0-1.dsc
  mda-lv2_1.0.0~dfsg0.orig.tar.bz2
  mda-lv2_1.0.0~dfsg0-1.debian.tar.gz
  mda-lv2_1.0.0~dfsg0-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


suil_0.6.0~dfsg0-1_amd64.changes ACCEPTED into unstable

2012-05-04 Thread Debian FTP Masters



Accepted:
libsuil-0-0_0.6.0~dfsg0-1_amd64.deb
  to main/s/suil/libsuil-0-0_0.6.0~dfsg0-1_amd64.deb
libsuil-dev_0.6.0~dfsg0-1_amd64.deb
  to main/s/suil/libsuil-dev_0.6.0~dfsg0-1_amd64.deb
suil-dbg_0.6.0~dfsg0-1_amd64.deb
  to main/s/suil/suil-dbg_0.6.0~dfsg0-1_amd64.deb
suil_0.6.0~dfsg0-1.debian.tar.gz
  to main/s/suil/suil_0.6.0~dfsg0-1.debian.tar.gz
suil_0.6.0~dfsg0-1.dsc
  to main/s/suil/suil_0.6.0~dfsg0-1.dsc
suil_0.6.0~dfsg0.orig.tar.bz2
  to main/s/suil/suil_0.6.0~dfsg0.orig.tar.bz2


Changes:
suil (0.6.0~dfsg0-1) unstable; urgency=low
 .
  * New upstream release.
  * Port to Multi-Arch.
  * Refresh patches.
  * Replace old LV2 build-deps with the newest lv2-dev.
  * Refresh symbols file.
  * debian/watch: Mangle dfsg suffix.
  * Update Vcs-* fields.
  * Update debian/copyright.
  * Bump dh requirement to 9.
  * Bump Standards.


Override entries for your package:
libsuil-0-0_0.6.0~dfsg0-1_amd64.deb - optional libs
libsuil-dev_0.6.0~dfsg0-1_amd64.deb - optional libdevel
suil-dbg_0.6.0~dfsg0-1_amd64.deb - extra debug
suil_0.6.0~dfsg0-1.dsc - source 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 suil_0.6.0~dfsg0-1_amd64.changes

2012-05-04 Thread Debian FTP Masters
suil_0.6.0~dfsg0-1_amd64.changes uploaded successfully to localhost
along with the files:
  suil_0.6.0~dfsg0-1.dsc
  suil_0.6.0~dfsg0.orig.tar.bz2
  suil_0.6.0~dfsg0-1.debian.tar.gz
  libsuil-dev_0.6.0~dfsg0-1_amd64.deb
  libsuil-0-0_0.6.0~dfsg0-1_amd64.deb
  suil-dbg_0.6.0~dfsg0-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


Processed: block 670647 with 669343

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

> block 670647 with 669343
Bug #670647 [liblilv-0-0] liblilv-0-0: Please upgrade package to latest 
upstream 0.14.2
670647 was blocked by: 669232
670647 was not blocking any bugs.
Added blocking bug(s) of 670647: 669343
> thanks
Stopping processing here.

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


sratom_0.2.0~dfsg0-1_amd64.changes is NEW

2012-05-04 Thread Debian FTP Masters
(new) libsratom-0-0_0.2.0~dfsg0-1_amd64.deb optional libs
library for serialising LV2 atoms to/from Turtle
 Sratom is a new C library for serialising LV2 atoms to/from Turtle.
 It is intended to be a full serialisation solution for LV2 atoms,
 allowing implementations to serialise binary atoms to strings and
 read them back again. This is particularly useful for saving plugin
 state, or implementing plugin control with network transparency.
 Sratom uses Serd and Sord to do the work, it is a small library
 implemented in a single source file, suitable for direct inclusion
 in projects if avoiding a dependency is desired.
(new) libsratom-dev_0.2.0~dfsg0-1_amd64.deb optional libdevel
library for serialising LV2 atoms to/from Turtle - development files
 Sratom is a new C library for serialising LV2 atoms to/from Turtle.
 It is intended to be a full serialisation solution for LV2 atoms,
 allowing implementations to serialise binary atoms to strings and
 read them back again. This is particularly useful for saving plugin
 state, or implementing plugin control with network transparency.
 Sratom uses Serd and Sord to do the work, it is a small library
 implemented in a single source file, suitable for direct inclusion
 in projects if avoiding a dependency is desired.
 .
 This package provides the development files for Sratom.
(new) libsratom-doc_0.2.0~dfsg0-1_all.deb optional doc
library for serialising LV2 atoms to/from Turtle - documentation
 Sratom is a new C library for serialising LV2 atoms to/from Turtle.
 It is intended to be a full serialisation solution for LV2 atoms,
 allowing implementations to serialise binary atoms to strings and
 read them back again. This is particularly useful for saving plugin
 state, or implementing plugin control with network transparency.
 Sratom uses Serd and Sord to do the work, it is a small library
 implemented in a single source file, suitable for direct inclusion
 in projects if avoiding a dependency is desired.
 .
 This package provides the developer's reference for sratom.
(new) sratom_0.2.0~dfsg0-1.debian.tar.gz optional libs
(new) sratom_0.2.0~dfsg0-1.dsc optional libs
(new) sratom_0.2.0~dfsg0.orig.tar.bz2 optional libs


Changes:
sratom (0.2.0~dfsg0-1) unstable; urgency=low
 .
  * Initial release. (Closes: #669343)


Override entries for your package:

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


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


lv2_1.0.0~dfsg2-2_amd64.changes ACCEPTED into unstable

2012-05-04 Thread Debian FTP Masters



Accepted:
lv2-dev_1.0.0~dfsg2-2_amd64.deb
  to main/l/lv2/lv2-dev_1.0.0~dfsg2-2_amd64.deb
lv2-examples_1.0.0~dfsg2-2_amd64.deb
  to main/l/lv2/lv2-examples_1.0.0~dfsg2-2_amd64.deb
lv2_1.0.0~dfsg2-2.debian.tar.gz
  to main/l/lv2/lv2_1.0.0~dfsg2-2.debian.tar.gz
lv2_1.0.0~dfsg2-2.dsc
  to main/l/lv2/lv2_1.0.0~dfsg2-2.dsc


Changes:
lv2 (1.0.0~dfsg2-2) unstable; urgency=low
 .
  * Breaks/Replaces on lv2-extensions-good rather than Conflicts/Replaces.


Override entries for your package:
lv2-dev_1.0.0~dfsg2-2_amd64.deb - optional libdevel
lv2-examples_1.0.0~dfsg2-2_amd64.deb - optional sound
lv2_1.0.0~dfsg2-2.dsc - source sound

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 lv2_1.0.0~dfsg2-2_amd64.changes

2012-05-04 Thread Debian FTP Masters
lv2_1.0.0~dfsg2-2_amd64.changes uploaded successfully to localhost
along with the files:
  lv2_1.0.0~dfsg2-2.dsc
  lv2_1.0.0~dfsg2-2.debian.tar.gz
  lv2-dev_1.0.0~dfsg2-2_amd64.deb
  lv2-examples_1.0.0~dfsg2-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

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


Processing of sratom_0.2.0~dfsg0-1_amd64.changes

2012-05-04 Thread Debian FTP Masters
sratom_0.2.0~dfsg0-1_amd64.changes uploaded successfully to localhost
along with the files:
  sratom_0.2.0~dfsg0-1.dsc
  sratom_0.2.0~dfsg0.orig.tar.bz2
  sratom_0.2.0~dfsg0-1.debian.tar.gz
  libsratom-dev_0.2.0~dfsg0-1_amd64.deb
  libsratom-0-0_0.2.0~dfsg0-1_amd64.deb
  libsratom-doc_0.2.0~dfsg0-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

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


Bug#671484: marked as done (rtirq-init: new upstream version)

2012-05-04 Thread Debian Bug Tracking System
Your message dated Sat, 05 May 2012 00:04:38 +
with message-id 
and subject line Bug#671484: fixed in rtirq 20120504-1
has caused the Debian Bug report #671484,
regarding rtirq-init: new upstream version
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.)


-- 
671484: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671484
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: rtirq-init
Version: 20111007-1
Severity: wishlist

Dear Maintainer,

New upstream version available



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-2-rt-amd64 (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

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: rtirq
Source-Version: 20120504-1

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

rtirq-init_20120504-1_all.deb
  to main/r/rtirq/rtirq-init_20120504-1_all.deb
rtirq_20120504-1.debian.tar.gz
  to main/r/rtirq/rtirq_20120504-1.debian.tar.gz
rtirq_20120504-1.dsc
  to main/r/rtirq/rtirq_20120504-1.dsc
rtirq_20120504.orig.tar.gz
  to main/r/rtirq/rtirq_20120504.orig.tar.gz



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

Debian distribution maintenance software
pp.
Alessio Treglia  (supplier of updated rtirq 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: Sat, 05 May 2012 01:49:52 +0200
Source: rtirq
Binary: rtirq-init
Architecture: source all
Version: 20120504-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 

Changed-By: Alessio Treglia 
Description: 
 rtirq-init - startup script for realtime-preempt enabled kernels
Closes: 671484
Changes: 
 rtirq (20120504-1) unstable; urgency=low
 .
   * New upstream release (Closes: #671484).
   * Update debian/copyright.
   * Bump Standards.
Checksums-Sha1: 
 fb31fe678bc872246e181a1753d24bdc93f9be93 1963 rtirq_20120504-1.dsc
 e663c0556957723d286022235deee3db246538d0 11511 rtirq_20120504.orig.tar.gz
 8f1e7e3d3516ec383466962cfe3f61e1d0255b35 2440 rtirq_20120504-1.debian.tar.gz
 b744bd7128f2fc358b6c9ad599bfbe8de979d5ab 5608 rtirq-init_20120504-1_all.deb
Checksums-Sha256: 
 b967a0116826f470efad52008562bfd1dc00a18a997afe9ccd63e63aefd61a05 1963 
rtirq_20120504-1.dsc
 22f40e5655dbafaa14c4037aac3c412cff2adab15408dbc7a1a33db4b8b4a298 11511 
rtirq_20120504.orig.tar.gz
 6a683f7c5e380ec0866e1c35e76c47f0caa9e31eef85df9c232821362cbc823a 2440 
rtirq_20120504-1.debian.tar.gz
 35ad9e780a017618f712ec0fefd5fb8e2c110ee36190105780dc31d94a6aed35 5608 
rtirq-init_20120504-1_all.deb
Files: 
 8776ebf06bf089860b16e67d963a37e4 1963 misc optional rtirq_20120504-1.dsc
 cc5ea4c069f0748dd6d9db3605898ea2 11511 misc optional rtirq_20120504.orig.tar.gz
 b161878a3b2b71c10453e24c1a8607ec 2440 misc optional 
rtirq_20120504-1.debian.tar.gz
 fa41ef4e6f5967f36081f1b5d3eb632f 5608 misc optional 
rtirq-init_20120504-1_all.deb

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

iQIcBAEBCgAGBQJPpGu7AAoJEOikiuUxHXZaNW4P/RZAAOAiziwaUvKJTJMMDhkl
FaiPo2Auf8V+oOOyiaiH8Uw/qoHPoUMnxlLTov5OevQgVwLgoD/L6Qixg1cMdzZV
3ELcVap3XvbdOEjjqzA5oxAFUTyfvUvtd9PRh0kDroBg0L2LMkYsRFjnPZxqT02x
7wxuVFymFMVhefd2sMOCDYkMpcdFE/WwnLgcPygg+Ddb45KO8qsJnP3tzdZ/gMJz
lggzlUxYgfJUomkoZbr9I0eCuE0tpEkTMh89zE18FYlrQsTcmVnWawr0e1j2pMa6
hiy24vi5kp9JHjYJ5ztUugxKLtgMrhNSVkoxPbpq7kE5uGf0+vdZC9gTJcmAL4+a
eb+nfBt3E1AgtOwC3c6PKUQpdsbAeFeR0RBcMk4FPbSIA9r5msW8ESlOlCjEg85l
WEfzIVPDcMF2DWa6s3Wib1OjUhS/BUqpd8ZBoM3ukXqz7ZAyAOYRYbRv9iv8g6II
r7KH5NZRULm/RainN1FTwn2tAjGetQqfM1yx+e2t7r0tiTjIv9ikFvjZMmDoh5tm
JIDXzeMVpLVj49U0L/RgOxnGsUQCSgpeNDacX7LcL5EfQxVnFkITRprFp7rdNjJ5
KO1puecjLYHU8R6dzQAc8FS8Ql0mJnOrNmD3LPfoWmKcCJhCJ592sxXxlLCSnvMd
qhsp9vK+kspWN8X2qzjv
=fmkS
-END PGP SIGNATURE-


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

Bug#671362: marked as done (mplayer2: mpolayer2 crashes when trying to connect remote pulsaudio server)

2012-05-04 Thread Debian Bug Tracking System
Your message dated Sat, 05 May 2012 00:04:05 +
with message-id 
and subject line Bug#671362: fixed in mplayer2 2.0-542-gbb90802-1
has caused the Debian Bug report #671362,
regarding mplayer2: mpolayer2 crashes when trying to connect remote pulsaudio 
server
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.)


-- 
671362: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671362
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mplayer2
Version: 2.0-426-gc32b3ed-2
Severity: important

Dear Maintainer,

when I try to run "mplayer -ao pulse:servername" it crashes:

--cut--
...
==
Requested audio codec family [mpg123] (afm=mpg123) not available.
Enable it at compilation.
Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
AUDIO: 48000 Hz, 1 ch, floatle, 96.0 kbit/6.25% (ratio: 12000->192000)
Selected audio codec: [ffmp3float] afm: ffmpeg (FFmpeg MPEG layer-3 audio)
==


MPlayer interrupted by signal 11 in module: ao2_init
- MPlayer crashed by bad usage of CPU/FPU/RAM.
  Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and
  disassembly. Details in DOCS/HTML/en/bugreports_what.html#bugreports_crash.
- MPlayer crashed. This shouldn't happen.
  It can be a bug in the MPlayer code _or_ in your drivers _or_ in your
  gcc version. If you think it's MPlayer's fault, please read
  DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and
  won't help unless you provide this information when reporting a possible bug.
MPlayer2 UNKNOWN (C) 2000-2011 MPlayer Team
--cut--

Version 2.0-426-gc32b3ed-2 works fine.
But 2.0-518-gb711624-2, 2.0-541-gf64a4e9-1 and 1:2.0~git20120430-dmo1
are broken.

Thank you!


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (700, 'unstable'), (600, 'testing'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.0.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=cs_CZ.UTF-8, LC_CTYPE=cs_CZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mplayer2 depends on:
ii  libaa11.4p5-39
ii  libasound21.0.25-2
ii  libass4   0.10.0-3
ii  libaudio2 1.9.3-5
ii  libavcodec53  7:0.10.2-dmo3
ii  libavformat53 7:0.10.2-dmo3
ii  libavutil51   7:0.10.2-dmo3
ii  libbluray11:0.2.2-1
ii  libc6 2.13-31
ii  libcaca0  0.99.beta18-1
ii  libcdparanoia03.10.2+debian-10.1
ii  libdca0   0.0.5-5
ii  libdirectfb-1.2-9 1.2.10.0-4.3
ii  libdvdnav44.2.0-1
ii  libdvdread4   4.2.0-1
ii  libenca0  1.13-4
ii  libesd0   0.2.41-10+b1
ii  libfaad2  2.7-8
ii  libfontconfig12.9.0-2
ii  libfreetype6  2.4.9-1
ii  libfribidi0   0.19.2-3
ii  libgcc1   1:4.7.0-6
ii  libgif4   4.1.6-9
ii  libgl1-mesa-glx [libgl1]  8.0.2-2
ii  libjack0 [libjack-0.116]  1:0.121.3+20120418git75e3e20b-1
ii  libjpeg8  8d-1
ii  liblircclient00.9.0~pre1-1
ii  libncurses5   5.9-7
ii  libogg0   1.2.2~dfsg-1
ii  libpng12-01.2.49-1
ii  libpostproc52 7:0.10.2-dmo3
ii  libpulse0 1.1-3.2
ii  libsdl1.2debian   1.2.15-3
ii  libsmbclient  2:3.6.5-1
ii  libspeex1 1.2~rc1-3
ii  libstdc++64.7.0-6
ii  libswscale2   7:0.10.2-dmo3
ii  libtheora01.1.1+dfsg.1-3
ii  libtinfo5 5.9-7
ii  libvdpau1 0.4.1-5
ii  libvorbis0a   1.3.2-1.2
ii  libx11-6  2:1.4.99.901-2
ii  libxext6  2:1.3.1-2
ii  libxinerama1  2:1.1.2-1
ii  libxt61:1.1.3-1
ii  libxv12:1.0.7-1
ii  libxvidcore4  3:1.3.2-0.6
ii  libxxf86dga1  2:1.1.3-1
ii  libxxf86vm1   1:1.1.2-1
ii  zlib1g1:1.2.6.dfsg-2

mplayer2 recommends no packages.

mplayer2 suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: mplayer2
Source-Version: 2.0-542-gbb90802-1

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

mplayer2-dbg_2.0-542-gbb90802-1_amd64.

rtirq_20120504-1_amd64.changes ACCEPTED into unstable

2012-05-04 Thread Debian FTP Masters



Accepted:
rtirq-init_20120504-1_all.deb
  to main/r/rtirq/rtirq-init_20120504-1_all.deb
rtirq_20120504-1.debian.tar.gz
  to main/r/rtirq/rtirq_20120504-1.debian.tar.gz
rtirq_20120504-1.dsc
  to main/r/rtirq/rtirq_20120504-1.dsc
rtirq_20120504.orig.tar.gz
  to main/r/rtirq/rtirq_20120504.orig.tar.gz


Changes:
rtirq (20120504-1) unstable; urgency=low
 .
  * New upstream release (Closes: #671484).
  * Update debian/copyright.
  * Bump Standards.


Override entries for your package:
rtirq-init_20120504-1_all.deb - optional misc
rtirq_20120504-1.dsc - source misc

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


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


mplayer2_2.0-542-gbb90802-1_amd64.changes ACCEPTED into unstable

2012-05-04 Thread Debian FTP Masters



Accepted:
mplayer2-dbg_2.0-542-gbb90802-1_amd64.deb
  to main/m/mplayer2/mplayer2-dbg_2.0-542-gbb90802-1_amd64.deb
mplayer2_2.0-542-gbb90802-1.debian.tar.gz
  to main/m/mplayer2/mplayer2_2.0-542-gbb90802-1.debian.tar.gz
mplayer2_2.0-542-gbb90802-1.dsc
  to main/m/mplayer2/mplayer2_2.0-542-gbb90802-1.dsc
mplayer2_2.0-542-gbb90802-1_amd64.deb
  to main/m/mplayer2/mplayer2_2.0-542-gbb90802-1_amd64.deb
mplayer2_2.0-542-gbb90802.orig.tar.bz2
  to main/m/mplayer2/mplayer2_2.0-542-gbb90802.orig.tar.bz2


Changes:
mplayer2 (2.0-542-gbb90802-1) unstable; urgency=low
 .
  * New upstream snapshot:
- ao_pulse: fix specifying host/sink (Closes: #671362)
  * Drop support for cdparanoia.
  * Build-Depends on libcdio-{cdda,paranoia}-dev.


Override entries for your package:
mplayer2-dbg_2.0-542-gbb90802-1_amd64.deb - extra debug
mplayer2_2.0-542-gbb90802-1.dsc - source video
mplayer2_2.0-542-gbb90802-1_amd64.deb - extra video

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


Thank you for your contribution to Debian.

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


Bug#671568: ecasound-el: help mode access to source code

2012-05-04 Thread Kevin Ryde
Package: ecasound-el
Version: 2.8.1-6
Severity: minor
File: /usr/lib/emacsen-common/packages/install/ecasound-el

In emacs23 -q,

C-h f ecasound

doesn't have a link button to the ecasound.el source code, where I hoped
it would.

In emacs23 a .el must be in the same directory as the .elc to be
recognised as its source code.  An easy way to do that is for the
install script to symlink the .el files to the flavour directory when
byte compiling, and leave them there for the help system to use
(removing both .el and the .elc in the remove script).


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

Kernel: Linux 2.6.32-5-486
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages ecasound-el depends on:
ii  ecasound  
ii  emacs21 [emacsen] 21.4a+1-5.7
ii  emacs22-gtk [emacsen] 22.3+1-1.2
ii  emacs23 [emacsen] 23.4+1-3
ii  xemacs21  21.4.22-3.2
ii  xemacs21-mule [xemacs21]  21.4.22-3.2

ecasound-el recommends no packages.

ecasound-el suggests no packages.

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


Processing of rtirq_20120504-1_amd64.changes

2012-05-04 Thread Debian FTP Masters
rtirq_20120504-1_amd64.changes uploaded successfully to localhost
along with the files:
  rtirq_20120504-1.dsc
  rtirq_20120504.orig.tar.gz
  rtirq_20120504-1.debian.tar.gz
  rtirq-init_20120504-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

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


Processed: tagging 671484

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

> tags 671484 + pending
Bug #671484 [rtirq-init] rtirq-init: new upstream version
Added tag(s) pending.
> thanks
Stopping processing here.

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


Processing of mplayer2_2.0-542-gbb90802-1_amd64.changes

2012-05-04 Thread Debian FTP Masters
mplayer2_2.0-542-gbb90802-1_amd64.changes uploaded successfully to localhost
along with the files:
  mplayer2_2.0-542-gbb90802-1.dsc
  mplayer2_2.0-542-gbb90802.orig.tar.bz2
  mplayer2_2.0-542-gbb90802-1.debian.tar.gz
  mplayer2_2.0-542-gbb90802-1_amd64.deb
  mplayer2-dbg_2.0-542-gbb90802-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#671551: ecasound-el: debian-pkg-add-load-path-item

2012-05-04 Thread Kevin Ryde
Package: ecasound-el
Version: 2.8.1-6
Severity: minor
File: /etc/emacs/site-start.d/50ecasound-el.el

/usr/share/doc/emacsen-common/debian-emacs-policy.gz section 9 asks lisp
add-ons to add directories with `debian-pkg-add-load-path-item' rather
than directly modifying `load-path' the way 50ecasound-el.el does.

I believe debian-pkg-add-load-path-item is available as of "sarge"
emacsen-common 1.4.14 of June 2002.  It aims to keep /usr/local ahead of
packaged lisp dirs so that anything in /usr/local has precedence.

I notice too 50ecasound-el.el uses (symbol-name flavor) to make the
path.  I think `flavor' is only a dynamic binding from the site-start.d
running code whereas `debian-emacs-flavor' is the documented variable.


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

Kernel: Linux 2.6.32-5-486
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages ecasound-el depends on:
ii  ecasound  
ii  emacs21 [emacsen] 21.4a+1-5.7
ii  emacs22-gtk [emacsen] 22.3+1-1.2
ii  emacs23 [emacsen] 23.4+1-3
ii  xemacs21  21.4.22-3.2
ii  xemacs21-mule [xemacs21]  21.4.22-3.2

ecasound-el recommends no packages.

ecasound-el suggests no packages.

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


Processed: your mail

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

> severity 671302 important
Bug #671302 [src:libav] libav: circular dependency between libav and opencv
Bug #671381 [src:libav] libav: unbuildable due to circular dependency with 
opencv
Severity set to 'important' from 'serious'
Severity set to 'important' from 'serious'
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
671302: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671302
671381: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671381
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#671302: Circular Build Dependencies (was Bug#671302: libav: circular dependency between libav and opencv)

2012-05-04 Thread Andres Mejia
On May 4, 2012 4:43 PM, "Fabian Greffrath"  wrote:
>
> > libav -> x264 -> libav
>
> AFAICT the x264 frontend uses libav whereas libav uses the libx264 shared
> library. So theortically (!) this issue could be solved by two separate
> source packages for the x264 frontend and the library.
>
>  - Fabian
>
>

This doesn't resolve the issue with opencv though.

~ Andres
___
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#671302: Circular Build Dependencies (was Bug#671302: libav: circular dependency between libav and opencv)

2012-05-04 Thread Fabian Greffrath
> libav -> x264 -> libav

AFAICT the x264 frontend uses libav whereas libav uses the libx264 shared
library. So theortically (!) this issue could be solved by two separate
source packages for the x264 frontend and the library.

 - Fabian





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


liblivemedia 2012.04.21-1 MIGRATED to testing

2012-05-04 Thread Debian testing watch
FYI: The status of the liblivemedia source package
in Debian's testing distribution has changed.

  Previous version: 2012.04.04-1
  Current version:  2012.04.21-1

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


vco-plugins 0.3.0-2 MIGRATED to testing

2012-05-04 Thread Debian testing watch
FYI: The status of the vco-plugins source package
in Debian's testing distribution has changed.

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


amb-plugins 0.8.1-3 MIGRATED to testing

2012-05-04 Thread Debian testing watch
FYI: The status of the amb-plugins source package
in Debian's testing distribution has changed.

  Previous version: 0.8.1-2
  Current version:  0.8.1-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


wah-plugins 0.0.2-2 MIGRATED to testing

2012-05-04 Thread Debian testing watch
FYI: The status of the wah-plugins source package
in Debian's testing distribution has changed.

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


gpac 0.4.5+svn4019~dfsg0-3 MIGRATED to testing

2012-05-04 Thread Debian testing watch
FYI: The status of the gpac source package
in Debian's testing distribution has changed.

  Previous version: 0.4.5+svn3462~dfsg0-1
  Current version:  0.4.5+svn4019~dfsg0-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


rev-plugins 0.3.1-2 MIGRATED to testing

2012-05-04 Thread Debian testing watch
FYI: The status of the rev-plugins source package
in Debian's testing distribution has changed.

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


fil-plugins 0.3.0-3 MIGRATED to testing

2012-05-04 Thread Debian testing watch
FYI: The status of the fil-plugins source package
in Debian's testing distribution has changed.

  Previous version: 0.3.0-2
  Current version:  0.3.0-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


mcp-plugins 0.4.0-2 MIGRATED to testing

2012-05-04 Thread Debian testing watch
FYI: The status of the mcp-plugins source package
in Debian's testing distribution has changed.

  Previous version: 0.4.0-1
  Current version:  0.4.0-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#671491: [liblilv-dev] Build failure when including lilvmm.hpp in multiple compilation units

2012-05-04 Thread Johannes Kroll
Package: liblilv-dev
Version: 0.5.0+dfsg0-1
Severity: normal

--- Please enter the report below this line. ---

I got the following error message while building Luppp on Debian
testing:

/libengine_gui.a(lvtwohost.cpp.0.o): In function `Lilv::uri_to_path(char 
const*)':
/usr/include/lilv-0/lilv/lilvmm.hpp:24: multiple definition of
`Lilv::uri_to_path(char const*)' 
./libengine_gui.a(offlineworker.cpp.0.o):/usr/include/lilv-0/lilv/lilvmm.hpp:24:
 first defined here
collect2: ld returned 1 exit status

/usr/include/lilv-0/lilv/lilvmm.hpp:24 reads:

const char* uri_to_path(const char* uri) { return lilv_uri_to_path(uri); }

When this header gets included in more than one compilation unit,
uri_to_path gets defined several times, which causes the error.

In the current upstream version of lilv from [1], the function is
declared 'static inline' which fixes the problem. 

[1] http://drobilla.net/software/lilv/

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.2.11

Debian Release: wheezy/sid
  500 testing www.debian-multimedia.org 
  500 testing http.us.debian.org 
  500 testing ftp.de.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-
liblilv-0-0  (>= 0.5.0+dfsg0-1) | 0.5.0+dfsg0-1
liblilv-0-0 (<< 0.5.0+dfsg0+1~) | 0.5.0+dfsg0-1


Package's Recommends field is empty.

Package's Suggests field is empty.




___
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#671484: rtirq-init: new upstream version

2012-05-04 Thread rosea grammostolla
Package: rtirq-init
Version: 20111007-1
Severity: wishlist

Dear Maintainer,

New upstream version available



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-2-rt-amd64 (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

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


Processed: your mail

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

> tags 671362 pending
Bug #671362 [mplayer2] mplayer2: mpolayer2 crashes when trying to connect 
remote pulsaudio server
Added tag(s) pending.
> thanks
Stopping processing here.

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


lv2_1.0.0~dfsg2-1_amd64.changes ACCEPTED into unstable

2012-05-04 Thread Debian FTP Masters



Accepted:
lv2-dev_1.0.0~dfsg2-1_amd64.deb
  to main/l/lv2/lv2-dev_1.0.0~dfsg2-1_amd64.deb
lv2-examples_1.0.0~dfsg2-1_amd64.deb
  to main/l/lv2/lv2-examples_1.0.0~dfsg2-1_amd64.deb
lv2_1.0.0~dfsg2-1.debian.tar.gz
  to main/l/lv2/lv2_1.0.0~dfsg2-1.debian.tar.gz
lv2_1.0.0~dfsg2-1.dsc
  to main/l/lv2/lv2_1.0.0~dfsg2-1.dsc
lv2_1.0.0~dfsg2.orig.tar.bz2
  to main/l/lv2/lv2_1.0.0~dfsg2.orig.tar.bz2


Changes:
lv2 (1.0.0~dfsg2-1) unstable; urgency=low
 .
  * Initial release. (Closes: #669232)


Override entries for your package:
lv2-dev_1.0.0~dfsg2-1_amd64.deb - optional libdevel
lv2-examples_1.0.0~dfsg2-1_amd64.deb - optional sound
lv2_1.0.0~dfsg2-1.dsc - source sound

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


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


Comments regarding lv2_1.0.0~dfsg2-1_amd64.changes

2012-05-04 Thread Alexander Reichle-Schmehl
Hi maintainer(s)!

Just a minor remakr:  All the files in the waflib directory contain a
pointer to
http://waf.googlecode.com/git/docs/wafbook/single.html#_obtaining_the_waf_file.
However, that URL just gives a 404.


Best regards,
  Alexander



___
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: your mail

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

> tags 671362 fixed-upstream
Bug #671362 [mplayer2] mplayer2: mpolayer2 crashes when trying to connect 
remote pulsaudio server
Added tag(s) fixed-upstream.
> thanks
Stopping processing here.

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


Processed: bug 670112 is forwarded to https://github.com/jackaudio/jack2/issues/10

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

> forwarded 670112 https://github.com/jackaudio/jack2/issues/10
Bug #670112 [jackd2] jackd2: Jackd will not start if X not running.
Set Bug forwarded-to-address to 'https://github.com/jackaudio/jack2/issues/10'.
> thanks
Stopping processing here.

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

2012-05-04 Thread Игорь Пашев
2012/5/4 Игорь Пашев 

> x11-utils


xfonts-utils
___
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#671302: Circular Build Dependencies

2012-05-04 Thread Игорь Пашев
When I meet circular build deps:

1. Just get sources and try to build, satisfying what possible.
Some deps required for docs or tests and may be ignored for the first time.

2. If a build dep is really required to build (I remember x11-utils), I
install it separately
from sources into /usr/local

3. And finally, if nothing helps, I make a dummy package :-) I remember
gtk3 <-> gsettings-backend
___
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#671302: Circular Build Dependencies

2012-05-04 Thread Goswin von Brederlow
Andres Mejia  writes:

> On May 3, 2012 10:20 AM, "Andres Mejia"  wrote:
>>
>> On May 3, 2012 9:30 AM, "Pino Toscano"  wrote:
>> >
>> > Alle giovedì 3 maggio 2012, Andres Mejia ha scritto:
>> > > On Thu, May 3, 2012 at 3:44 AM, Pino Toscano  wrote:
>> > > > Package: libav
>> > > > Version: 6:0.8.1-7
>> > > > Severity: important
>> > > >
>> > > > Hi,
>> > > >
>> > > > libav 6:0.8.1-7 reenables the use of opencv... which itself uses
>> > > > libav libraries. This currently makes libav unbuildable on mipsel
>> > > > and hurd-i386, and generically makes libav no more bootstrap'able
>> > > > without having itself compiled already.
>> > > > Could you please drop the opencv usage again, please?
>> > > >
>> > > What could be done instead is a binary only upload with opencv
>> > > support disabled (i.e. use dpkg-buildpackage -B). Doing it on our
>> > > end will not require changing the version. Once this package is
>> > > uploaded, the release team can then be asked to do a binNMU for
>> > > these archs, which will bring back opencv support since the archive
>> > > will contain the regular *.debian.tar.gz changes that included
>> > > opencv.
>> > >
>> > > I believe this is better than doing a full build on all archs without
>> > > opencv, then doing another build with opencv.
>> >
>> > This mess (which is only a mess, not a clean solution) does not solve at
>> > all the fact that you cannot do a clean build of libav without having
>> > libav compiled already (for opencv).
>> > I don't see this as a viable solution, especially if in the future the
>> > epoch is raised bringing again conflicts between the old libav libraries
>> > and the new one.
>> >
>> > --
>> > Pino Toscano
>>
>> I'm not entirely certain how build circular dependency issues like this are
> resolved. Perhaps we should ask for help from the toolchain package 
> maintainers
> or debian-devel.
>>
>> ~ Andres
>
> Hello all,
> I would like to know if there is a good (perhaps best) approach in resolving
> issues with packages with circular build dependencies.
>
> Libav has various circular build dependencies including.
>
> libav -> opencv -> libav
> libav -> x264 -> libav
> libav -> x264 -> gpac -> libav
>
> I found some mention of this issue at [1]. This however doesn't offer any 
> clear
> solution.
>
> 1. http://wiki.debian.org/DebianBootstrap
>
> ~ Andres

gcc depends on gcc. *gasp*

I think at some point you simply have to live with such circular
Build-Depends. [1] offers a solution, or the begining of one, using
stages (see Mechanism). What is unclear about the idea?

MfG
Goswin






___
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#671407: vlc-nox does not include /usr/lib/vlc/plugins/codec/libavcodec_plugin.so

2012-05-04 Thread Rémi Denis-Courmont
tags 671407 + wontfix
thanks

On Thu, 03 May 2012 17:29:42 -0400, Paul Dejean 
wrote:
> Dear Maintainer,
> vlc-nox does not include the module provided in
> /usr/lib/vlc/plugins/codec/libavcodec_plugin.so
> This means that to use the features provided by this module, the user
> would need to install the "vlc" package, which they might not want if
> they're running a headless server.

It used to be so that avcodec was in the without-X package. But these
days, avcodec depends on vaapi which depends on X. So avcodec belongs in
the with-X package.

I do not disagree that it severely limits the usability of vlc-nox. But
there is nothing VLC can do about it. It would need changes within lavc.

-- 
Rémi Denis-Courmont
Sent from my collocated server



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

Processed: Re: Bug#671407: vlc-nox does not include /usr/lib/vlc/plugins/codec/libavcodec_plugin.so

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

> tags 671407 + wontfix
Bug #671407 [vlc-nox] vlc-nox does not include 
/usr/lib/vlc/plugins/codec/libavcodec_plugin.so
Added tag(s) wontfix.
> thanks
Stopping processing here.

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


Processed: add patch

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

> reopen 667203
Bug #667203 {Done: Matthias Klose } [hydrogen] hydrogen: ftbfs 
with GCC-4.7
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions italc/1:1.0.13-1.3.
> tags 667203 + patch
Bug #667203 [hydrogen] hydrogen: ftbfs with GCC-4.7
Added tag(s) patch.
> thanks
Stopping processing here.

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

2012-05-04 Thread Matthias Klose
reopen 667203
tags 667203 + patch
thanks

wrong bug number in unrelated patch

diff -Nru hydrogen-0.9.6~beta1/debian/changelog 
hydrogen-0.9.6~beta1/debian/changelog
--- hydrogen-0.9.6~beta1/debian/changelog   2012-02-18 16:47:27.0 
+
+++ hydrogen-0.9.6~beta1/debian/changelog   2012-05-04 06:29:48.0 
+
@@ -1,3 +1,10 @@
+hydrogen (0.9.6~beta1-2.1) unstable; urgency=low
+
+  * Non maintainer upload.
+  * Fix build failure with GCC 4.7. Closes: #667203.
+
+ -- Matthias Klose   Fri, 04 May 2012 08:29:08 +0200
+
 hydrogen (0.9.6~beta1-2) unstable; urgency=low
 
   * Replace rsvg with rsvg-convert to convert SVG to PNG image (LP: #935170):
diff -Nru hydrogen-0.9.6~beta1/debian/patches/ftbfs-gcc-4.7.diff 
hydrogen-0.9.6~beta1/debian/patches/ftbfs-gcc-4.7.diff
--- hydrogen-0.9.6~beta1/debian/patches/ftbfs-gcc-4.7.diff  1970-01-01 
00:00:00.0 +
+++ hydrogen-0.9.6~beta1/debian/patches/ftbfs-gcc-4.7.diff  2012-05-04 
06:42:19.0 +
@@ -0,0 +1,46 @@
+Index: hydrogen-0.9.6~beta1/src/core/src/IO/portmidi_driver.cpp
+===
+--- hydrogen-0.9.6~beta1.orig/src/core/src/IO/portmidi_driver.cpp  
2011-01-16 08:47:33.0 +
 hydrogen-0.9.6~beta1/src/core/src/IO/portmidi_driver.cpp   2012-05-04 
06:30:32.631749914 +
+@@ -32,6 +32,7 @@
+ #ifdef WIN32
+ #include 
+ #endif
++#include 
+ 
+ #ifdef H2CORE_HAVE_PORTMIDI
+ 
+Index: hydrogen-0.9.6~beta1/src/tests/xml.cpp
+===
+--- hydrogen-0.9.6~beta1.orig/src/tests/xml.cpp2011-07-22 
07:34:28.0 +
 hydrogen-0.9.6~beta1/src/tests/xml.cpp 2012-05-04 06:34:03.971757784 
+
+@@ -1,4 +1,5 @@
+ 
++#include 
+ #include 
+ 
+ #include 
+Index: hydrogen-0.9.6~beta1/src/gui/src/SongEditor/SongEditor.cpp
+===
+--- hydrogen-0.9.6~beta1.orig/src/gui/src/SongEditor/SongEditor.cpp
2011-10-24 10:31:06.0 +
 hydrogen-0.9.6~beta1/src/gui/src/SongEditor/SongEditor.cpp 2012-05-04 
06:35:06.819760122 +
+@@ -21,6 +21,7 @@
+  */
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ 
+Index: hydrogen-0.9.6~beta1/src/gui/src/MainForm.cpp
+===
+--- hydrogen-0.9.6~beta1.orig/src/gui/src/MainForm.cpp 2011-12-04 
16:23:30.0 +
 hydrogen-0.9.6~beta1/src/gui/src/MainForm.cpp  2012-05-04 
06:42:17.055776123 +
+@@ -20,6 +20,7 @@
+  *
+  */
+ 
++#include 
+ #include 
+ #include 
+ #include 
diff -Nru hydrogen-0.9.6~beta1/debian/patches/series 
hydrogen-0.9.6~beta1/debian/patches/series
--- hydrogen-0.9.6~beta1/debian/patches/series  2012-02-18 14:41:36.0 
+
+++ hydrogen-0.9.6~beta1/debian/patches/series  2012-05-04 06:29:53.0 
+
@@ -2,3 +2,4 @@
 1001_rubberband_path.patch
 1005_name_shouldnt_repeat_genericname.patch
 1006_porttime.patch
+ftbfs-gcc-4.7.diff
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers