Processed: retitle 692907 to ITA: ulatency -- Daemon to minimize latency on a linux system using cgroups

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

> retitle 692907 ITA: ulatency -- Daemon to minimize latency on a linux system 
> using cgroups
Bug #692907 [wnpp] O: ulatencyd -- Daemon to minimize latency on a linux system 
using cgroups
Changed Bug title to 'ITA: ulatency -- Daemon to minimize latency on a linux 
system using cgroups' from 'O: ulatencyd -- Daemon to minimize latency on a 
linux system using cgroups'
> owner 692970 'Ritesh Raj Sarraf '
Bug #692970 [icecast2] icecast2: [INTL:ja] New Japanese translation
Owner recorded as 'Ritesh Raj Sarraf '.
> thanks
Stopping processing here.

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


crystalhd_0.0~git20110715.fdd2f19-10_amd64.changes is NEW

2014-04-14 Thread Debian FTP Masters
binary:gstreamer1.0-crystalhd is NEW.

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

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


Bug#744815: icecast2: not compiled against SSL for server side SSL

2014-04-14 Thread Robert Weidlich
Package: icecast2
Version: 2.3.3-2
Severity: important

Dear Maintainer,

the package does not build against a ssl library, as it did in wheezy.

This disables the possibility to offer the web interface and the streams
via https. As this the web interface and the source clients use HTTP
Basic auth this is somewhat critical.

Please build against some ssl library to restore this feature.


-- System Information:
Debian Release: 7.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

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

___
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 crystalhd_0.0~git20110715.fdd2f19-10_amd64.changes

2014-04-14 Thread Debian FTP Masters
crystalhd_0.0~git20110715.fdd2f19-10_amd64.changes uploaded successfully to 
localhost
along with the files:
  crystalhd_0.0~git20110715.fdd2f19-10.dsc
  crystalhd_0.0~git20110715.fdd2f19-10.debian.tar.xz
  libcrystalhd-dev_0.0~git20110715.fdd2f19-10_amd64.deb
  libcrystalhd3_0.0~git20110715.fdd2f19-10_amd64.deb
  gstreamer1.0-crystalhd_0.0~git20110715.fdd2f19-10_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#744785: freetuxtv: fails to build with clang instead of gcc

2014-04-14 Thread Nicolas Sévelin-Radiguet
Package: freetuxtv
Version: 0.6.5~dfsg1-1
Severity: minor
Tags: patch
User: pkg-llvm-t...@lists.alioth.debian.org
Usertags: clang-ftbfs

Dear Maintainer,

Your package fails to build with clang instead of gcc. [-Wreturn-type]
The attached patch fixes it.
Buildlogs and patch are here:
https://github.com/nonas/debian-clang/tree/master/buildlogs/freetuxtv

Regards,
Nicolas

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

Kernel: Linux 3.13-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Description: fix FTBFS with clang instead of gcc
Author: Nicolas Sévelin-Radiguet 
Last-Update: 2014-04-14

--- a/lib/libvlc-gtk/gtk-libvlc-instance.c
+++ b/lib/libvlc-gtk/gtk-libvlc-instance.c
@@ -103,7 +103,7 @@
 	const gchar *szErrMsg;
 	
 #ifdef LIBVLC_OLD_VLCEXCEPTION
-	g_return_if_fail(user_data != NULL);
+	g_return_val_if_fail(user_data != NULL, FALSE);
 	libvlc_exception_t *ex = (libvlc_exception_t*)user_data;
 	if (libvlc_exception_raised (ex)){
 		bRes = TRUE;
@@ -149,7 +149,7 @@
 gtk_libvlc_instance_new (const gchar* vlc_args[], GLogFunc log_func, GError** error)
 {
 	if(error != NULL){
-		g_return_if_fail(*error == NULL);
+		g_return_val_if_fail(*error == NULL, NULL);
 	}
 
 	GError* pError = NULL;
@@ -251,9 +251,9 @@
 LIBVLC_INSTANCE_HANDLE
 gtk_libvlc_instance_get_libvlc_instance(GtkLibvlcInstance* pLibvlcInstance, GError** error)
 {
-	g_return_if_fail(pLibvlcInstance != NULL);
+	g_return_val_if_fail(pLibvlcInstance != NULL, NULL);
 	if(error != NULL){
-		g_return_if_fail(*error == NULL);
+		g_return_val_if_fail(*error == NULL, NULL);
 	}
 
 	LIBVLC_INSTANCE_HANDLE handle;
--- a/lib/libvlc-gtk/gtk-libvlc-media.c
+++ b/lib/libvlc-gtk/gtk-libvlc-media.c
@@ -88,7 +88,7 @@
 GtkLibvlcMedia*
 gtk_libvlc_media_new (gchar* mrl)
 {
-	g_return_if_fail(mrl != NULL);
+	g_return_val_if_fail(mrl != NULL, NULL);
 
 	GtkLibvlcMedia *self = NULL;
 	self = g_object_new (GTK_TYPE_LIBVLC_MEDIA, NULL);
@@ -229,8 +229,8 @@
 const gchar**
 gtk_libvlc_media_get_options (GtkLibvlcMedia* media)
 {
-	g_return_if_fail(media != NULL);
-	g_return_if_fail(GTK_IS_LIBVLC_MEDIA(media));
+	g_return_val_if_fail(media != NULL, NULL);
+	g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA(media), NULL);
 	
 	GtkLibvlcMediaPrivate* priv;
 	gchar** options = NULL;
--- a/lib/libvlc-gtk/gtk-libvlc-media-player.c
+++ b/lib/libvlc-gtk/gtk-libvlc-media-player.c
@@ -78,7 +78,7 @@
 	const gchar *szErrMsg;
 
 #ifdef LIBVLC_OLD_VLCEXCEPTION
-	g_return_if_fail(user_data != NULL);
+	g_return_val_if_fail(user_data != NULL, FALSE);
 	libvlc_exception_t *ex = (libvlc_exception_t*)user_data;
 	if (libvlc_exception_raised (ex)){
 		bRes = TRUE;
@@ -771,8 +771,8 @@
 static gboolean
 idle_play_next_function(gpointer ptrdata){
 	GtkLibvlcMediaPlayer *self;
-	g_return_if_fail(ptrdata != NULL);
-	g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(ptrdata));
+	g_return_val_if_fail(ptrdata != NULL, FALSE);
+	g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(ptrdata), FALSE);
 
 	self = GTK_LIBVLC_MEDIA_PLAYER(ptrdata);
 
@@ -925,8 +925,8 @@
 GtkWidget *
 gtk_libvlc_media_player_new (GtkLibvlcInstance* libvlc_instance, GError** error)
 {
-	g_return_if_fail(libvlc_instance != NULL);
-	g_return_if_fail(GTK_IS_LIBVLC_INSTANCE(libvlc_instance));
+	g_return_val_if_fail(libvlc_instance != NULL, NULL);
+	g_return_val_if_fail(GTK_IS_LIBVLC_INSTANCE(libvlc_instance), NULL);
 
 	GtkLibvlcMediaPlayer *self = NULL;
 
@@ -986,8 +986,8 @@
 GtkLibvlcMedia*
 gtk_libvlc_media_player_get_current_media (GtkLibvlcMediaPlayer *self)
 {
-	g_return_if_fail(self != NULL);
-	g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
+	g_return_val_if_fail(self != NULL, NULL);
+	g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), NULL);
 
 	GtkLibvlcMediaPlayerPrivate* priv;
 	priv = GTK_LIBVLC_MEDIA_PLAYER_PRIVATE(self);
@@ -998,9 +998,9 @@
 GtkLibvlcMedia*
 gtk_libvlc_media_player_get_media_from_path (GtkLibvlcMediaPlayer *self, GtkTreePath *path)
 {
-	g_return_if_fail(self != NULL);
-	g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
-	g_return_if_fail(path != NULL);
+	g_return_val_if_fail(self != NULL, NULL);
+	g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), NULL);
+	g_return_val_if_fail(path != NULL, NULL);
 
 	// Get the media from the path
 	GtkLibvlcMedia *media;
@@ -1244,11 +1244,11 @@
 gboolean
 gtk_libvlc_media_player_can_pause (GtkLibvlcMediaPlayer *self, GError** error)
 {
-	g_return_if_fail(self != NULL);
-	g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
-	g_return_if_fail(self->libvlc_instance != NULL);
+	g_return_val_if_fail(self != NULL, FALSE);
+	g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), FALSE);
+	g_return_val_if_fail(self->libvlc_instance != NULL, FALSE);
 	if(error != NULL){
-		g_return_if_fail(*error == NULL);
+		g_return_val_if_fail(*error == NULL, FALSE);
 	}

Processed: Merge easytag bugs 528030 and 689803

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

> severity 528030 normal
Bug #528030 [easytag] easytag: User interface does not fit on 1024x768 screen
Severity set to 'normal' from 'minor'
> tags 528030 + confirmed
Bug #528030 [easytag] easytag: User interface does not fit on 1024x768 screen
Added tag(s) confirmed.
> forcemerge 528030 689803
Bug #528030 [easytag] easytag: User interface does not fit on 1024x768 screen
Bug #528030 [easytag] easytag: User interface does not fit on 1024x768 screen
Marked as found in versions easytag/2.1.7-2.
Bug #689803 [easytag] easytag: Maximizing is not possible (using Gnome3)
Set Bug forwarded-to-address to 
'https://bugzilla.gnome.org/show_bug.cgi?id=689438'.
Marked as found in versions easytag/2.1.4-1.1.
Added tag(s) upstream and confirmed.
Merged 528030 689803
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
528030: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528030
689803: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689803
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#743698: marked as done (recommend/suggest va-driver/vdpau-driver and libgl1-mesa-dri libaacs0)

2014-04-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 Apr 2014 17:16:45 +0200
with message-id <20140414151645.GA11621@kronk>
and subject line Re: Bug#743698: recommend/suggest va-driver/vdpau-driver and 
libgl1-mesa-dri libaacs0
has caused the Debian Bug report #743698,
regarding recommend/suggest va-driver/vdpau-driver and libgl1-mesa-dri libaacs0
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.)


-- 
743698: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=743698
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mpv
Version: 0.3.7-1
Severity: normal

#703544  i965-va-driver: Nothing depends / recommends this

I thinks mpv would be a prime candidate. Theres also:

$ aptitude search va-driver -F %p | grep -E -v 'i386|dbg'
i965-va-driver
nvidia-va-driver
s3g-va-driver
va-driver
vdpau-va-driver
xvba-va-driver

I can confirm that i965-va-driver and vdpau-va-driver work well with
the mpv package, but it might make more sense to "suggest"
vdpau-va-driver since it's probably better to use mpv's native vaapi
support.

Similarly, there's
$ aptitude search vdpau-driver -F %p | grep -E -v 'i386|dbg'
mesa-vdpau-drivers
nvidia-vdpau-driver
vdpau-driver

--vo=opengl (the one recommended by upstream) requires libgl1-mesa-dri (or 
equivalent) to function.

libaacs0 is required for playing blurays 

Kevin

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

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

Versions of packages mpv depends on:
ii  libasound2  1.0.27.2-3
ii  libass4 0.10.1-3
ii  libavcodec546:9.11-3+b1
ii  libavfilter36:9.11-3+b1
ii  libavformat54   6:9.11-3+b1
ii  libavresample1  6:9.11-3+b1
ii  libavutil52 6:9.11-3+b1
ii  libbluray1  1:0.5.0-2
ii  libbs2b03.1.0+dfsg-2
ii  libc6   2.18-4
ii  libcdio-cdda1   0.83-4.1
ii  libcdio-paranoia1   0.83-4.1
ii  libcdio13   0.83-4.1
ii  libdvdnav4  4.2.1-3
ii  libdvdread4 4.2.1-2
ii  libegl1-mesa [libegl1-x11]  10.1.0-5
ii  libenca01.15-2
ii  libgl1-mesa-glx [libgl1]10.1.0-5
ii  libguess1   1.1-4
ii  libjack-jackd2-0 [libjack-0.116]1.9.9.5+20140404git3d7c67dc~dfsg-1
ii  libjpeg88d-2
ii  liblcms2-2  2.5-1
ii  liblircclient0  0.9.0~pre1-1
ii  liblua5.1-0 5.1.5-5
ii  libmpg123-0 1.18.0-1
ii  libncurses5 5.9+20140118-1
ii  libpostproc52   6:0.git20120821-4
ii  libpulse0   5.0-1
ii  libquvi70.4.1-2
ii  libsdl2-2.0-0   2.0.2+dfsg1-3
ii  libswscale2 6:9.11-3+b1
ii  libtinfo5   5.9+20140118-1
ii  libuuid12.20.1-5.7
ii  libva-glx1  1.3.0-1
ii  libva-x11-1 1.3.0-1
ii  libva1  1.3.0-1
ii  libvdpau1   0.7-1
ii  libwayland-client0  1.4.0-1
ii  libwayland-cursor0  1.4.0-1
ii  libwayland-egl1-mesa [libwayland-egl1]  10.1.0-5
ii  libx11-62:1.6.2-1
ii  libxext62:1.3.2-1
ii  libxinerama12:1.1.3-1
ii  libxkbcommon0   0.4.0-1
ii  libxss1 1:1.2.2-1
ii  libxv1  2:1.0.10-1
ii  libxxf86vm1 1:1.1.3-1
ii  zlib1g  1:1.2.8.dfsg-1

mpv recommends no packages.

mpv suggests no packages.

-- no debconf information
--- End Message ---
--- Begin Message ---
On sab, apr 05, 2014 at 04:20:10 -0700, Kevin Mitchell wrote:
> Package: mpv
> Version: 0.3.7-1
> Severity: normal
> 
> #703544  i965-va-driver: Nothing depends / rec

Bug#744747: jack-tools: if transport-aware, jack.play enables non-unique names

2014-04-14 Thread IOhannes m zmoelnig
Package: jack-tools
Version: 20101210-2.1
Severity: normal

starting `jack.play` with the "-t" flag to enable transport awareness,
also enables the "-u" flag (non-unique client names) as a side effect.

this is due to a missing "break;" statement in jack-play.c:409

fgmasdr
IOhannes




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

Kernel: Linux 3.12-1-686-pae (SMP w/4 CPU cores)
Locale: LANG=de_AT.utf8, LC_CTYPE=de_AT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages jack-tools depends on:
ii  jackd 5
ii  libc6 2.18-4
ii  libjack-jackd2-0 [libjack-0.116]  1.9.9.5+20130622git7de15e7a-1
ii  liblo70.28-3
ii  libncurses5   5.9+20140118-1
ii  libsamplerate00.1.8-7
ii  libsndfile1   1.0.25-9
ii  libtinfo5 5.9+20140118-1
ii  libx11-6  2:1.6.2-1
ii  libxext6  2:1.3.2-1

jack-tools recommends no packages.

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


ВАШ СРОЧНО ОТВЕТ ТРЕБУЕТСЯ

2014-04-14 Thread Barrister Alvis Hilbasin
*Дорогой друг, я адвокат Алвис Hilbasin, адвокат по закону, мне нужна ваша
помощь, чтобы представлять моего покойного клиента, он хранение сумму $ (US
$ 13,580,000.00) Миллион Соединенные доллары в банке, прежде чем он умер и
директорам банке / Руководство посоветовали мне связаться с любым из его
родственников, которые будут наследовать деньги или же их банк будет
**конфисковать
деньги. Для получения дополнительной информации о авиакатастрофе, вы можете
просмотреть BBC официальный сайт, чтобы увидеть авиакатастрофе:
(http://news.bbc.co.uk/2/hi/africa/3348109.stm
) Если вы заинтересованы,
пожалуйста, отправить ваш адрес электронной почты для меня, так что я пошлю
более подробную информацию для вас.*
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers