Bug#712269: tvtime: [tvtime] cppcheck tool discovered same severe errors in the code

2013-06-14 Thread POJAR GEORGE
Package: tvtime
Version: tvtime-1.0.2
Severity: normal

During a check with the static code analysis tool cppcheck 
(http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=Main_Page) the 
tool discovered same severe errors in the code.
I put cppcheck log in attachment.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#698653: tvtime: Switch to dpkg-source 3.0 (quilt) format

2013-01-21 Thread POJAR GEORGE
Package: tvtime
Version: 1.0.2-10
Severity: normal

When generating source package, I get notification that upstream source files 
were modified, yet a patch system is used.
It looks like some time in the past some patches got applied. E.g. $ bzr diff 
-rtag:1.0.2-10

From tvtime (1.0.2-10) direct (non packaging) changes: 
http://patch-tracker.debian.org/patch/nondebian/view/tvtime/1.0.2-10

Fixed this with switch to dpkg-source 3.0 (quilt) format.

-- System Information:
Debian Release: wheezy/sid
  APT prefers raring-updates
  APT policy: (500, 'raring-updates'), (500, 'raring-security'), (500, 'raring')
Architecture: amd64 (x86_64)

Kernel: Linux 3.8.0-1-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


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#698660: tvtime: Please enable hardening build flags

2013-01-21 Thread POJAR GEORGE
Package: tvtime
Version: 1.0.2-10
Severity: wishlist

Please enable hardened build flags for tvtime

Warnings from linitan report:

W hardening-no-fortify-functions
usr/bin/tvtime
usr/bin/tvtime-command
usr/bin/tvtime-configure
usr/bin/tvtime-scanner
W hardening-no-relro
usr/bin/tvtime
usr/bin/tvtime-command
usr/bin/tvtime-configure
usr/bin/tvtime-scanner

Thanks

-- System Information:
Debian Release: wheezy/sid
  APT prefers raring-updates
  APT policy: (500, 'raring-updates'), (500, 'raring-security'), (500, 'raring')
Architecture: amd64 (x86_64)

Kernel: Linux 3.8.0-1-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


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#278220: tvtime: channel selection list request

2013-01-18 Thread POJAR GEORGE
Package: tvtime
Followup-For: Bug #278220

I write a patch for request, see this feature in action at:
http://www.youtube.com/watch?v=U7mKLXC9fF0.



-- System Information:
Debian Release: wheezy/sid
  APT prefers raring-updates
  APT policy: (500, 'raring-updates'), (500, 'raring-security'), (500, 'raring')
Architecture: amd64 (x86_64)

Kernel: Linux 3.8.0-0-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 tvtime depends on:
ii  debconf [debconf-2.0]  1.5.49ubuntu1
ii  fonts-freefont-ttf [ttf-freefont]  20120503-1
ii  libc6  2.16-0ubuntu8
ii  libfreetype6   2.4.10-0ubuntu2
ii  libpng12-0 1.2.49-1ubuntu2
ii  libstdc++6 4.7.2-19ubuntu1
ii  libx11-6   2:1.5.0-1
ii  libxext6   2:1.3.1-2
ii  libxinerama1   2:1.1.2-1
ii  libxml22.9.0+dfsg1-4ubuntu1
ii  libxtst6   2:1.2.1-1
ii  libxv1 2:1.0.7-1
ii  libxxf86vm11:1.1.2-1
ii  perl-modules   5.14.2-16
ii  ucf3.0025+nmu3

Versions of packages tvtime recommends:
pn  xmltv-util  none

Versions of packages tvtime suggests:
pn  lirc-x  none
pn  oss-compat  none

-- debconf information excluded
## Description: Implemented a feature to show a channel menu that show list of stations for comfortable selection.
## Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=278220
## Author: Pojar George geoubu...@gmail.com
Index: tvtime-1.0.2/src/commands.c
===
--- tvtime-1.0.2.orig/src/commands.c	2013-01-19 06:55:05.511430604 +
+++ tvtime-1.0.2/src/commands.c	2013-01-19 06:55:05.503430604 +
@@ -41,6 +41,7 @@
 #include tvtimeglyphs.h
 
 #define NUM_FAVORITES 9
+#define NUM_STATIONS ((num_stations  15) ? 15 : num_stations)
 #define MAX_USER_MENUS 64
 
 /* Maximum number of steps to increment sleeptimer. */
@@ -49,6 +50,7 @@
 enum menu_type
 {
 MENU_REDIRECT,
+MENU_CHANNEL_SELECTION,
 MENU_FAVORITES,
 MENU_USER
 };
@@ -63,6 +65,7 @@
 { root, MENU_REDIRECT, root-tuner },
 { picture, MENU_REDIRECT, picture-tuner },
 { input, MENU_REDIRECT, input-ntsc },
+{ channel-selection, MENU_CHANNEL_SELECTION, 0 },
 { favorites, MENU_FAVORITES, 0 },
 };
 
@@ -167,6 +170,8 @@
 int numfavorites;
 int favorites[ NUM_FAVORITES ];
 
+int channel_selection;
+
 int menuactive;
 int curmenu;
 int curmenupos;
@@ -1134,6 +1139,8 @@
 cmd-numfavorites = 0;
 memset( cmd-favorites, 0, sizeof( cmd-favorites ) );
 
+cmd-channel_selection = 0;
+
 cmd-menuactive = 0;
 cmd-curmenu = MENU_FAVORITES;
 cmd-curmenupos = 0;
@@ -1864,6 +1871,16 @@
 }
 }
 menu_off( cmd );
+} else if( cmd-curmenu == MENU_CHANNEL_SELECTION ) {
+int command = tvtime_osd_list_get_enter_command( cmd-osd, cmd-curmenupos + 1 );
+const char *argument = tvtime_osd_list_get_enter_argument( cmd-osd, cmd-curmenupos + 1 );
+const char *current = station_get_current_channel_name( cmd-stationmgr );
+if( !strcmp( argument, current ) ) return;
+
+/* I check for MENU_ENTER just to avoid a malicious infinite loop. */
+if( command != TVTIME_MENU_ENTER ) {
+commands_handle( cmd, command, argument );
+}
 } else if( cmd-curmenu == MENU_USER ) {
 int command = menu_get_enter_command( cmd-curusermenu, cmd-curmenupos + 1 );
 const char *argument = menu_get_enter_argument( cmd-curusermenu, cmd-curmenupos + 1 );
@@ -1877,7 +1894,7 @@
 
 static void menu_back( commands_t *cmd )
 {
-if( cmd-curmenu == MENU_FAVORITES ) {
+if( ( cmd-curmenu == MENU_FAVORITES ) || ( cmd-curmenu == MENU_CHANNEL_SELECTION ) ) {
 commands_handle( cmd, TVTIME_SHOW_MENU, stations );
 } else if( cmd-curmenu == MENU_USER ) {
 int command = menu_get_back_command( cmd-curusermenu );
@@ -1890,6 +1907,40 @@
 }
 }
 
+static int show_channel_selection( commands_t *cmd, tvtime_osd_t* osd, int channel )
+{
+const int num_stations = station_get_num_stations( cmd-stationmgr );
+const int num = NUM_STATIONS;
+int i;
+
+tvtime_osd_list_set_lines( cmd-osd, num + 1 );
+tvtime_osd_list_set_text( cmd-osd, 0, _(Channel Selection) );
+
+for( i = 0; i  num; i++ ) {
+const char *name = station_get_name( cmd-stationmgr, i + channel - 1 );
+char string[ 128 ];
+
+if ( channel  num_stations ) {
+channel = 1;
+} else if ( channel  1 ) {
+channel = num_stations;
+}
+
+snprintf(string, sizeof( string ), [%s] %s,
+  station_get_channel( cmd-stationmgr, i + channel - 1

Bug#679378: xmltv: guide not downloading from port.ro and port.hu

2012-06-28 Thread POJAR GEORGE
Package: xmltv
Version: 0.5.63
Severity: important
Tags: patch

guide not downloading from port.ro and port.hu :

http://www.port.hu/pls/tv/tv.channel?i_ch=001i_date=20120625i_xday=5i_where=1:
no programs found, skipping
http://www.port.hu/pls/tv/tv.channel?i_ch=002i_date=20120625i_xday=5i_where=1:
no programs found, skipping
http://www.port.hu/pls/tv/tv.channel?i_ch=003i_date=20120625i_xday=5i_where=1:
no programs found, skipping
http://www.port.hu/pls/tv/tv.channel?i_ch=005i_date=20120625i_xday=5i_where=1:
no programs found, skipping
http://www.port.hu/pls/tv/tv.channel?i_ch=006i_date=20120625i_xday=5i_where=1:
no programs found, skipping
http://www.port.hu/pls/tv/tv.channel?i_ch=032i_date=20120625i_xday=5i_where=1:
no programs found, skipping




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

Kernel: Linux 3.2.0-23-generic-pae (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
## Description: _huro: unbreak after site changes
## Origin: upstream, http://xmltv.cvs.sourceforge.net/viewvc/xmltv/xmltv/grab/huro/tv_grab_huro.in?r1=1.47r2=1.48view=patch
## Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/xmltv/+bug/1018756
## Author: István Váradi and Zoltan Karcagi
## Forwarded: not-needed
Index: xmltv/grab/huro/tv_grab_huro.in
===
--- xmltv.orig/grab/huro/tv_grab_huro.in	2012-06-28 08:36:03.75430 +
+++ xmltv/grab/huro/tv_grab_huro.in	2012-06-28 08:40:55.390999811 +
@@ -2,7 +2,7 @@
 # vi:noet:ts=4
 
 #---
-# $Id: tv_grab_huro.in,v 1.47 2011/07/28 09:01:54 attila_nagy Exp $
+# $Id: tv_grab_huro.in,v 1.48 2012/06/19 06:32:25 dekarl Exp $
 #---
 
 #---
@@ -122,7 +122,7 @@
 #---
 
 use strict;
-use XMLTV::Version '$Id: tv_grab_huro.in,v 1.47 2011/07/28 09:01:54 attila_nagy Exp $';
+use XMLTV::Version '$Id: tv_grab_huro.in,v 1.48 2012/06/19 06:32:25 dekarl Exp $';
 use XMLTV::Capabilities qw/baseline manualconfig cache/;
 use XMLTV::Description 'Hungary/Romania';
 use XMLTV::Supplement qw/GetSupplement/;
@@ -482,11 +482,18 @@
 			# the column can hold following type of data:
 			# begin time | title | long desc | url | category
 			
-			if ($col-attr(colspan)  (my $begin_time = $col-look_down(_tag=p, class=begin_time ))) 
+			my $begin_time;
+			# this matches the currently running programme only:
+			if ($col-attr(colspan)  ($begin_time = $col-look_down(_tag=p, class=begin_time )))
 			{
 $_ = $begin_time-as_text();
+			} elsif ($begin_time = $col-look_down(_tag=td, class=time_container)) {
+$_ = $begin_time-look_down(_tag=div)-as_text();
 			} else {
 $_ = $col-as_text();
+$_ =~ tr/\xA0/ /;
+$_ =~ s/^\s+//;
+$_ =~ s/\s+$//;
 			}
 			s/^\s+//;s/\s+$//;
 



Bug#675191: gnomeradio: Unable to Record Audio

2012-05-30 Thread POJAR GEORGE
Package: gnomeradio
Version: 1.8-2ubuntu1
Severity: important
Tags: patch

I can't record in gnomeradio either, just an empty sound-file is what I get.
(see screenshot)

When start gnomeradio from terminal and try to record this error show up:

(gnomeradio:2084): gnomeradio-WARNING **: GStreamer runtime error: Could not
open audio device for recording.


TEST CASE:

1. Try to use gnomeradio built-in record function:

OUTPUT THIS ERROR:

(gnomeradio:22694): gnomeradio-WARNING **: GStreamer runtime error: Could not
open audio device for recording.

2. Try to record with gnomeradio started and gstreamer record commandline:

2.1 osssrc source

$ gst-launch-0.10 osssrc ! audioconvert ! wavenc ! filesink location=record.wav

OUTPUT THIS ERROR:

Setting pipeline to PAUSED ...
ERROR: Pipeline doesn't want to pause.
ERROR: from element /GstPipeline:pipeline0/GstOssSrc:osssrc0: Could not open
audio device for recording.
Additional debug info:
gstosssrc.c(380): gst_oss_src_open ():
/GstPipeline:pipeline0/GstOssSrc:osssrc0:
Unable to open device /dev/dsp for recording: No such file or directory
Setting pipeline to NULL ...
Freeing pipeline ...

2.2 autoaudiosrc source

$ gst-launch-0.10 autoaudiosrc ! audioconvert ! wavenc ! filesink
location=record.wav

OUTPUT THIS SUCCES:

Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Setting pipeline to PLAYING ...
New clock: GstAudioSrcClock

Conclusion:

Solution is to use autoaudiosrc plugin which can decide for us what audio
source to use, whether it is a linux/unix solution (PA, OSS, Alsa) or other.



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

Kernel: Linux 3.2.0-23-generic-pae (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 gnomeradio depends on:
ii  gconf-service  3.2.5-0ubuntu2
ii  gconf2 3.2.5-0ubuntu2
ii  libc6  2.15-0ubuntu10
ii  libcairo2  1.10.2-6.1ubuntu2
ii  libdbus-glib-1-2   0.98-1ubuntu1
ii  libgconf-2-4   3.2.5-0ubuntu2
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.32.1-0ubuntu2
ii  libgnome-media-profiles-3.0-0  3.0.0-1
ii  libgstreamer0.10-0 0.10.36-1ubuntu1
ii  libgtk-3-0 3.4.1-0ubuntu1
ii  liblircclient0 0.9.0-0ubuntu1

gnomeradio recommends no packages.

Versions of packages gnomeradio suggests:
pn  lirc-x  none

-- no debconf information
attachment: gnomeradio_record.pngdiff -Nru gnomeradio-1.8/debian/patches/gnomeradio-record.patch gnomeradio-1.8/debian/patches/gnomeradio-record.patch
--- gnomeradio-1.8/debian/patches/gnomeradio-record.patch	1970-01-01 00:00:00.0 +
+++ gnomeradio-1.8/debian/patches/gnomeradio-record.patch	2012-05-29 11:02:27.0 +
@@ -0,0 +1,57 @@
+## Description: Changed audio source from osssrc to autoaudiosrc that automatically detects an appropriate audio source to use.
+Index: gnomeradio-1.8/src/rec_tech.c
+===
+--- gnomeradio-1.8.orig/src/rec_tech.c	2012-05-29 10:56:56.052742786 +
 gnomeradio-1.8/src/rec_tech.c	2012-05-29 11:01:14.180735114 +
+@@ -42,8 +42,8 @@
+ recording_start(const char* filename)
+ {
+ 	GMAudioProfile *profile;
+-	GstElement *pipeline, *oss_src, *encoder, *filesink;
+-	pipeline = oss_src = encoder = filesink = NULL;
++	GstElement *pipeline, *source, *encoder, *filesink;
++	pipeline = source = encoder = filesink = NULL;
+ 	
+ 	profile = gm_audio_profile_lookup(rec_settings.profile);
+ 	g_assert(profile);
+@@ -54,9 +54,9 @@
+ 		goto error;
+ 	}		
+ 	
+-	oss_src = gst_element_factory_make(osssrc, oss-source);
+-	if (!oss_src) {
+-		g_warning(_(Could not open Gstreamer OSS Source. Verify your Gstreamer OSS subsystem installation!\n));
++	source = gst_element_factory_make(autoaudiosrc, audio_source);
++	if (!source) {
++		g_warning(_(Could not open Gstreamer AUDIO Source. Verify your Gstreamer AUDIO subsystem installation!\n));
+ 		goto error;
+ 	}
+ 	
+@@ -82,10 +82,10 @@
+ 	}
+ 	
+ 	/* Add the elements to the pipeline */
+-	gst_bin_add_many(GST_BIN(pipeline), oss_src, encoder, filesink, NULL);
++	gst_bin_add_many(GST_BIN(pipeline), source, encoder, filesink, NULL);
+ 	
+ 	/* Link it all together */
+-	if (!gst_element_link_many(oss_src, encoder, filesink, NULL)) {
++	if (!gst_element_link_many(source, encoder, filesink, NULL)) {
+ 		g_warning(Could not link elements. This is bad!\n);
+ 		goto error;
+ 	}
+@@ -103,8 +103,8 @@
+ error:
+ 	if (pipeline)
+ 		gst_object_unref(GST_OBJECT(pipeline));
+-	if (oss_src)
+-		gst_object_unref(GST_OBJECT(oss_src));
++	if (source)
++		gst_object_unref(GST_OBJECT(source));
+ 	if (encoder)
+ 		

Bug#675103: gnomeradio: About Gnomeradio dialog: missing website label and license dialog

2012-05-29 Thread POJAR GEORGE
Package: gnomeradio
Version: 1.8-2ubuntu1
Severity: wishlist
Tags: upstream

In About Gnomeradio dialog is ommited website label and license dialog



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

Kernel: Linux 3.2.0-23-generic-pae (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 gnomeradio depends on:
ii  gconf-service  3.2.5-0ubuntu2
ii  gconf2 3.2.5-0ubuntu2
ii  libc6  2.15-0ubuntu10
ii  libcairo2  1.10.2-6.1ubuntu2
ii  libdbus-glib-1-2   0.98-1ubuntu1
ii  libgconf-2-4   3.2.5-0ubuntu2
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.32.1-0ubuntu2
ii  libgnome-media-profiles-3.0-0  3.0.0-1
ii  libgstreamer0.10-0 0.10.36-1ubuntu1
ii  libgtk-3-0 3.4.1-0ubuntu1
ii  liblircclient0 0.9.0-0ubuntu1

gnomeradio recommends no packages.

Versions of packages gnomeradio suggests:
pn  lirc-x  none

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675113: gnomeradio: signal `expose-event' is invalid for instance

2012-05-29 Thread POJAR GEORGE
Package: gnomeradio
Version: 1.8-2
Severity: normal
Tags: upstream

signal `expose-event' is invalid for instance

When start gnomeradio from terminal get this error:

(gnomeradio:8784): GLib-GObject-WARNING **:
/build/buildd/glib2.0-2.32.1/./gobject/gsignal.c:2455: signal `expose-event' is
invalid for instance `0x92640a0'

that cause Gnomeradio status windows to flicker.



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

Kernel: Linux 3.2.0-23-generic-pae (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 gnomeradio depends on:
ii  gconf2 3.2.5-0ubuntu2
ii  libatk1.0-02.4.0-0ubuntu1
ii  libc6  2.15-0ubuntu10
ii  libcairo-gobject2  1.10.2-6.1ubuntu2
ii  libcairo2  1.10.2-6.1ubuntu2
ii  libdbus-1-31.4.18-1ubuntu1
ii  libdbus-glib-1-2   0.98-1ubuntu1
ii  libfontconfig1 2.8.0-3ubuntu9
ii  libfreetype6   2.4.8-1ubuntu2
ii  libgconf2-43.2.5-0ubuntu2
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.32.1-0ubuntu2
ii  libgnome-media-profiles-3.0-0  3.0.0-1
ii  libgstreamer0.10-0 0.10.36-1ubuntu1
ii  libgtk-3-0 3.4.1-0ubuntu1
ii  liblircclient0 0.9.0-0ubuntu1
ii  libpango1.0-0  1.30.0-0ubuntu2
ii  libxml22.7.8.dfsg-5.1ubuntu4

gnomeradio recommends no packages.

gnomeradio suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675116: gnomeradio: Typo in manual

2012-05-29 Thread POJAR GEORGE
Package: gnomeradio
Version: 1.8-2
Severity: minor
Tags: upstream

Gnomeradio manual show value 0,5 MHz in chapter Usage/Frequency controls but
application uses 0,05 MHz.



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

Kernel: Linux 3.2.0-23-generic-pae (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 gnomeradio depends on:
ii  gconf2 3.2.5-0ubuntu2
ii  libatk1.0-02.4.0-0ubuntu1
ii  libc6  2.15-0ubuntu10
ii  libcairo-gobject2  1.10.2-6.1ubuntu2
ii  libcairo2  1.10.2-6.1ubuntu2
ii  libdbus-1-31.4.18-1ubuntu1
ii  libdbus-glib-1-2   0.98-1ubuntu1
ii  libfontconfig1 2.8.0-3ubuntu9
ii  libfreetype6   2.4.8-1ubuntu2
ii  libgconf2-43.2.5-0ubuntu2
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.32.1-0ubuntu2
ii  libgnome-media-profiles-3.0-0  3.0.0-1
ii  libgstreamer0.10-0 0.10.36-1ubuntu1
ii  libgtk-3-0 3.4.1-0ubuntu1
ii  liblircclient0 0.9.0-0ubuntu1
ii  libpango1.0-0  1.30.0-0ubuntu2
ii  libxml22.7.8.dfsg-5.1ubuntu4

gnomeradio recommends no packages.

gnomeradio suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675118: gnomeradio: Missing plural handling for %d stations found

2012-05-29 Thread POJAR GEORGE
Package: gnomeradio
Version: 1.8-2
Severity: wishlist
Tags: l10n

In gnomeradio is missing ngettext support - See
https://live.gnome.org/TranslationProject/DevGuidelines/Plurals

#: ../src/gui.c:107
msgid %d stations found
--
#: ../src/gui.c:174
msgid 
%d stations found. \n
Do you want to add them as presets?\n



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

Kernel: Linux 3.2.0-23-generic-pae (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 gnomeradio depends on:
ii  gconf2 3.2.5-0ubuntu2
ii  libatk1.0-02.4.0-0ubuntu1
ii  libc6  2.15-0ubuntu10
ii  libcairo-gobject2  1.10.2-6.1ubuntu2
ii  libcairo2  1.10.2-6.1ubuntu2
ii  libdbus-1-31.4.18-1ubuntu1
ii  libdbus-glib-1-2   0.98-1ubuntu1
ii  libfontconfig1 2.8.0-3ubuntu9
ii  libfreetype6   2.4.8-1ubuntu2
ii  libgconf2-43.2.5-0ubuntu2
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.32.1-0ubuntu2
ii  libgnome-media-profiles-3.0-0  3.0.0-1
ii  libgstreamer0.10-0 0.10.36-1ubuntu1
ii  libgtk-3-0 3.4.1-0ubuntu1
ii  liblircclient0 0.9.0-0ubuntu1
ii  libpango1.0-0  1.30.0-0ubuntu2
ii  libxml22.7.8.dfsg-5.1ubuntu4

gnomeradio recommends no packages.

gnomeradio suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675119: gnomeradio: Use standard gstreamer functions to parse a description

2012-05-29 Thread POJAR GEORGE
Package: gnomeradio
Version: 1.8-2
Severity: wishlist
Tags: upstream

GStreamer contains several functions to parse a description to a bin
(gst_parse_bin_from_description[1]). Gnomeradio contains two custom functions
to do this, but i don't see anything special about those implementations. They
can, imho, be exchanged for their standard counterpart.

[1]http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html
/gstreamer-GstParse.html#gst-parse-bin-from-description



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

Kernel: Linux 3.2.0-23-generic-pae (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 gnomeradio depends on:
ii  gconf2 3.2.5-0ubuntu2
ii  libatk1.0-02.4.0-0ubuntu1
ii  libc6  2.15-0ubuntu10
ii  libcairo-gobject2  1.10.2-6.1ubuntu2
ii  libcairo2  1.10.2-6.1ubuntu2
ii  libdbus-1-31.4.18-1ubuntu1
ii  libdbus-glib-1-2   0.98-1ubuntu1
ii  libfontconfig1 2.8.0-3ubuntu9
ii  libfreetype6   2.4.8-1ubuntu2
ii  libgconf2-43.2.5-0ubuntu2
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.32.1-0ubuntu2
ii  libgnome-media-profiles-3.0-0  3.0.0-1
ii  libgstreamer0.10-0 0.10.36-1ubuntu1
ii  libgtk-3-0 3.4.1-0ubuntu1
ii  liblircclient0 0.9.0-0ubuntu1
ii  libpango1.0-0  1.30.0-0ubuntu2
ii  libxml22.7.8.dfsg-5.1ubuntu4

gnomeradio recommends no packages.

gnomeradio suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675121: gnomeradio: Use GtkVolumeButton instead of BaconVolumeButton

2012-05-29 Thread POJAR GEORGE
Package: gnomeradio
Version: 1.8-2
Severity: minor
Tags: upstream

GTK+ contains a GtkVolumeButton. I guess it would be better to use this
standard widget, instead of the custom BaconVolumeButton which is used now.



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

Kernel: Linux 3.2.0-23-generic-pae (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 gnomeradio depends on:
ii  gconf2 3.2.5-0ubuntu2
ii  libatk1.0-02.4.0-0ubuntu1
ii  libc6  2.15-0ubuntu10
ii  libcairo-gobject2  1.10.2-6.1ubuntu2
ii  libcairo2  1.10.2-6.1ubuntu2
ii  libdbus-1-31.4.18-1ubuntu1
ii  libdbus-glib-1-2   0.98-1ubuntu1
ii  libfontconfig1 2.8.0-3ubuntu9
ii  libfreetype6   2.4.8-1ubuntu2
ii  libgconf2-43.2.5-0ubuntu2
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.32.1-0ubuntu2
ii  libgnome-media-profiles-3.0-0  3.0.0-1
ii  libgstreamer0.10-0 0.10.36-1ubuntu1
ii  libgtk-3-0 3.4.1-0ubuntu1
ii  liblircclient0 0.9.0-0ubuntu1
ii  libpango1.0-0  1.30.0-0ubuntu2
ii  libxml22.7.8.dfsg-5.1ubuntu4

gnomeradio recommends no packages.

gnomeradio suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675123: gnomeradio: Feature request: Add a toggle visiblity option to the lirc commands.

2012-05-29 Thread POJAR GEORGE
Package: gnomeradio
Version: 1.8-2
Severity: wishlist
Tags: upstream

I use gnomeradio with lirc but find it inconvenient that it stays in the
foreground and that I having to mouse it away by right clicking on the tray
icon when I already have the remote in my hand. A toggle visible lirc command
would be great.



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

Kernel: Linux 3.2.0-23-generic-pae (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 gnomeradio depends on:
ii  gconf2 3.2.5-0ubuntu2
ii  libatk1.0-02.4.0-0ubuntu1
ii  libc6  2.15-0ubuntu10
ii  libcairo-gobject2  1.10.2-6.1ubuntu2
ii  libcairo2  1.10.2-6.1ubuntu2
ii  libdbus-1-31.4.18-1ubuntu1
ii  libdbus-glib-1-2   0.98-1ubuntu1
ii  libfontconfig1 2.8.0-3ubuntu9
ii  libfreetype6   2.4.8-1ubuntu2
ii  libgconf2-43.2.5-0ubuntu2
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.32.1-0ubuntu2
ii  libgnome-media-profiles-3.0-0  3.0.0-1
ii  libgstreamer0.10-0 0.10.36-1ubuntu1
ii  libgtk-3-0 3.4.1-0ubuntu1
ii  liblircclient0 0.9.0-0ubuntu1
ii  libpango1.0-0  1.30.0-0ubuntu2
ii  libxml22.7.8.dfsg-5.1ubuntu4

gnomeradio recommends no packages.

gnomeradio suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org