From: <mo...@us...> - 2007-08-31 17:31:08
|
Revision: 843 http://gmyth.svn.sourceforge.net/gmyth/?rev=843&view=rev Author: morphbr Date: 2007-08-31 10:31:09 -0700 (Fri, 31 Aug 2007) Log Message: ----------- - Updated "chunked" bug on gmencoder - Updated "poll" bug on gmencoder - Updated wrong method name on transcoder - Updated request_handler error message - New version of gmyth_cat Modified Paths: -------------- trunk/gmyth/samples/gmyth_cat.c trunk/gmyth-stream/server/lib/request_handler.py trunk/gmyth-stream/server/lib/transcoder.py trunk/gmyth-stream/server/plugins/transcoders/gmencoder.py trunk/gst-gmyth/mythsrc/gstmythtvsrc.c Modified: trunk/gmyth/samples/gmyth_cat.c =================================================================== --- trunk/gmyth/samples/gmyth_cat.c 2007-08-30 12:46:59 UTC (rev 842) +++ trunk/gmyth/samples/gmyth_cat.c 2007-08-31 17:31:09 UTC (rev 843) @@ -1,4 +1,3 @@ - #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -12,6 +11,12 @@ #include "gmyth_util.h" #include "gmyth_common.h" + +static GMainLoop *main_loop = NULL; +static GAsyncQueue *data_queue = NULL; +static GThread *producer_thread = NULL; +static gboolean program_end = FALSE; + typedef struct { GMythBackendInfo *b_info; char *filename; @@ -99,13 +104,60 @@ return TRUE; } +static gpointer +_async_data_producer_cb (gpointer data) +{ + gint file_transf_ret; + GMythFileTransfer *gmyth_file; + GArray *array = NULL; + + gmyth_file = (GMythFileTransfer *) data; + + array = g_array_new(FALSE, TRUE, sizeof(gchar)); + file_transf_ret = gmyth_file_transfer_read (GMYTH_FILE_TRANSFER(gmyth_file), + (GByteArray *) array, 64000, TRUE); + + while ((file_transf_ret == GMYTH_FILE_READ_OK) || + (file_transf_ret == GMYTH_FILE_READ_NEXT_PROG_CHAIN) || + program_end == FALSE) { + + g_async_queue_push (data_queue, array); + + array = g_array_new(FALSE, TRUE, sizeof(gchar)); + file_transf_ret = gmyth_file_transfer_read (GMYTH_FILE_TRANSFER(gmyth_file), + (GByteArray *) array, 64000, TRUE); + } + + gmyth_file_transfer_close(gmyth_file); + program_end = TRUE; + + return NULL; +} + +static gboolean +_sync_data_consumer_cb (gpointer data) +{ + if (g_async_queue_length (data_queue) > 0) { + GArray *data = g_async_queue_try_pop (data_queue); + + if (data != NULL) { + fwrite(data->data, sizeof (gchar) , data->len, stdout); + fflush(stdout); + g_array_free (data, TRUE); + } + } + + if (program_end == TRUE && g_async_queue_length (data_queue) == 0) { + return FALSE; + } + + return TRUE; +} + static gboolean _cat_recorded_file(cat_options_t * options) { - GArray *array = NULL; GMythFileTransfer *transfer; - guint64 size = 0, - total = 0; g_return_val_if_fail(options != NULL, FALSE); g_return_val_if_fail(options->b_info != NULL, FALSE); @@ -123,49 +175,16 @@ return FALSE; } - size = gmyth_file_transfer_get_filesize(transfer); - fprintf(stderr, "Size:%" G_GUINT64_FORMAT "\n", size); - - array = g_array_new(FALSE, TRUE, sizeof(gchar)); - - while (total != size) { - GMythFileReadResult res; - - res = gmyth_file_transfer_read(transfer, (GByteArray *) array, - (size - total) > - 64000 ? 64000 : (size - total), - FALSE); - if ((res != GMYTH_FILE_READ_OK) && (res != GMYTH_FILE_READ_EOF)) { - g_array_free(array, TRUE); - g_printerr("Error while reading the file: aborting!!\n"); - break; - } - - fwrite(array->data, array->len, 1, stdout); - fflush(stdout); - - total += array->len; - fprintf(stderr, "%" G_GUINT64_FORMAT "\n", total); - g_array_remove_range(array, 0, array->len); - // usleep(300000); - } - - gmyth_file_transfer_close(transfer); - g_array_free(array, TRUE); - g_object_unref(transfer); - - return TRUE; + producer_thread = g_thread_create (_async_data_producer_cb, transfer, TRUE, NULL); + return TRUE; } -static gboolean +static gboolean _cat_channel(cat_options_t * options) { GMythLiveTV *livetv = NULL; GMythFile *gmyth_file = NULL; - GArray *array = NULL; - gint file_transf_ret; - g_return_val_if_fail(options != NULL, FALSE); g_return_val_if_fail(options->b_info != NULL, FALSE); g_return_val_if_fail(options->channel != NULL, FALSE); @@ -193,25 +212,30 @@ return FALSE; } - array = g_array_new(FALSE, TRUE, sizeof(gchar)); + producer_thread = g_thread_create (_async_data_producer_cb, gmyth_file, TRUE, NULL); + return TRUE; +} - while (((file_transf_ret = gmyth_file_transfer_read - (GMYTH_FILE_TRANSFER(gmyth_file), - (GByteArray *) array, 64000, TRUE)) == GMYTH_FILE_READ_OK) || - file_transf_ret == GMYTH_FILE_READ_NEXT_PROG_CHAIN) { - fwrite(array->data, sizeof(gpointer), array->len, stdout); - fflush(stdout); - g_array_remove_range(array, 0, array->len); +static gboolean +_cat_loop (cat_options_t *options) +{ + gboolean res = FALSE; - g_main_context_iteration(g_main_context_default(), FALSE); + data_queue = g_async_queue_new(); + + if (options->filename) + res = _cat_recorded_file(options); + else if (options->channel) + res = _cat_channel(options); + else { + g_printerr + ("Argument invalid. You must specify --filename or --channel.\n" + "Type --help for more information.\n"); } - g_array_free(array, TRUE); - g_object_unref(gmyth_file); - g_object_unref(livetv); - - return TRUE; + g_idle_add (_sync_data_consumer_cb, NULL); + return res; } int @@ -224,6 +248,8 @@ if (!g_thread_supported()) g_thread_init(NULL); + main_loop = g_main_loop_new (NULL, FALSE); + options = _cat_options_new(); res = _parse_args(argc, argv, options); if (!res) { @@ -231,16 +257,11 @@ return 1; } - if (options->filename) - res = _cat_recorded_file(options); - else if (options->channel) - res = _cat_channel(options); - else - g_printerr - ("Argument invalid. You must specify --filename or --channel.\n" - "Type --help for more information.\n"); + if (!_cat_loop (options)) + return 1; + g_main_loop_run (main_loop); + _cat_options_free(options); - return 0; } Modified: trunk/gmyth-stream/server/lib/request_handler.py =================================================================== --- trunk/gmyth-stream/server/lib/request_handler.py 2007-08-30 12:46:59 UTC (rev 842) +++ trunk/gmyth-stream/server/lib/request_handler.py 2007-08-31 17:31:09 UTC (rev 843) @@ -425,10 +425,6 @@ self.send_response(200) self.send_header("Content-Type", obj.get_mimetype()) self.send_header("Cache-Control","no-cache") - - if (obj.name == "gmencoder"): - self.send_header("Transfer-Encoding", "chunked") - self.end_headers() if body: @@ -443,9 +439,9 @@ self.server.add_transcoders(self, obj) if obj.start(self.wfile): - self.transcoders_log.info (test_tid, "OK") + self.transcoders_log.info(test_tid, "OK") else: - self.transcoders_log.info (test_tid, "Fail") + self.transcoders_log.info(test_tid, "Fail") self.server.del_transcoders(self, obj) files.TranscodedFile("", self.query) Modified: trunk/gmyth-stream/server/lib/transcoder.py =================================================================== --- trunk/gmyth-stream/server/lib/transcoder.py 2007-08-30 12:46:59 UTC (rev 842) +++ trunk/gmyth-stream/server/lib/transcoder.py 2007-08-31 17:31:09 UTC (rev 843) @@ -42,7 +42,7 @@ pass # stop() - def get_legth (self): + def get_length (self): pass # get_leght () Modified: trunk/gmyth-stream/server/plugins/transcoders/gmencoder.py =================================================================== --- trunk/gmyth-stream/server/plugins/transcoders/gmencoder.py 2007-08-30 12:46:59 UTC (rev 842) +++ trunk/gmyth-stream/server/plugins/transcoders/gmencoder.py 2007-08-31 17:31:09 UTC (rev 843) @@ -64,7 +64,6 @@ self._insert_param("-o", "file://%s" % path) else: self._insert_param ("-o", "fd://%d" % outfd.fileno()) - self.opts.append ("-c") cmd = " ".join(self.opts) self.log.info(self.tid, "GMencoder: %s" % cmd) @@ -84,8 +83,9 @@ try: if not outfile: p = select.poll() - p.register (outfd, select.POLLNVAL | select.POLLERR | select.POLLHUP | select.POLLIN ) - + p.register (outfd, select.POLLNVAL | select.POLLERR | + select.POLLHUP) + tries = 0 while (self.proc and self.proc.poll() == None): r, w, x = select.select([self.proc.stdout], [], [], 1) if self.proc.stdout in r: @@ -93,12 +93,17 @@ if (progress.find ("PROGRESS") >= 0): self.status = progress.split (":")[1] elif (progress.find ("Erro") >= 0): - return False + self.log.error(self.tid, "Detected problem @ gmencoder:" + " %s" % progress) + if tries < 50: + tries += 1 + else: + return False if not outfile: ret = p.poll(0) if ret: - self.log.info(self.tid, "Lost connection") + self.log.info(self.tid, "* Lost connection *") self.stop () return False Modified: trunk/gst-gmyth/mythsrc/gstmythtvsrc.c =================================================================== --- trunk/gst-gmyth/mythsrc/gstmythtvsrc.c 2007-08-30 12:46:59 UTC (rev 842) +++ trunk/gst-gmyth/mythsrc/gstmythtvsrc.c 2007-08-31 17:31:09 UTC (rev 843) @@ -88,7 +88,7 @@ #define GMYTHTV_TRANSFER_MAX_RESENDS 2 #define GMYTHTV_TRANSFER_MAX_BUFFER (128*1024) #define READ_SIZE (14*1024) -#define READ_SIZE_LIVETV (30*1024) +#define READ_SIZE_LIVETV (80*1024) #define GST_FLOW_ERROR_NO_DATA (-101) static const GstElementDetails gst_mythtv_src_details = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2007-09-18 17:20:51
|
Revision: 858 http://gmyth.svn.sourceforge.net/gmyth/?rev=858&view=rev Author: renatofilho Date: 2007-09-18 10:20:50 -0700 (Tue, 18 Sep 2007) Log Message: ----------- fixed debian scripts Modified Paths: -------------- trunk/gmyth/debian/changelog trunk/gst-gmyth/autogen.sh trunk/gst-gmyth/debian/control trunk/gst-gmyth/mythsrc/Makefile.am trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.h trunk/libgnomevfs2-mythtv/debian/changelog trunk/libgnomevfs2-mythtv/debian/control Modified: trunk/gmyth/debian/changelog =================================================================== --- trunk/gmyth/debian/changelog 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gmyth/debian/changelog 2007-09-18 17:20:50 UTC (rev 858) @@ -1,4 +1,4 @@ -gmyth (0.4) unstable; urgency=low +gmyth (0.4-indt1) unstable; urgency=low * Bug fixes * Improvements in the schedule management (add all schedule, add exception, ...) Modified: trunk/gst-gmyth/autogen.sh =================================================================== --- trunk/gst-gmyth/autogen.sh 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/autogen.sh 2007-09-18 17:20:50 UTC (rev 858) @@ -4,7 +4,7 @@ srcdir=`dirname $0` test -z "$srcdir" && srcdir=. -PKG_NAME="gmemcoder" +PKG_NAME="gstreamer elements" (test -f $srcdir/configure.ac) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" Modified: trunk/gst-gmyth/debian/control =================================================================== --- trunk/gst-gmyth/debian/control 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/debian/control 2007-09-18 17:20:50 UTC (rev 858) @@ -4,6 +4,7 @@ Maintainer: Renato Araujo Oliveira Filho <ren...@in...> Build-Depends: debhelper (>= 4.1.0), cdbs (>= 0.4.8), autotools-dev, pkg-config (>= 0.11.0), libgstreamer0.10-dev (>= 0.10.0), gmyth-dev (>= 0.3) Standards-Version: 3.6.2 +Section: user/library Package: gstreamer0.10-indt-nuvdemux Architecture: any Modified: trunk/gst-gmyth/mythsrc/Makefile.am =================================================================== --- trunk/gst-gmyth/mythsrc/Makefile.am 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/mythsrc/Makefile.am 2007-09-18 17:20:50 UTC (rev 858) @@ -22,8 +22,6 @@ gstmythtvsrc.c: gstmythtvsrc.h cvs -d:pserver:an...@an...:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.c mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.c . - -gstmythtvsrc.h: cvs -d:pserver:an...@an...:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.h mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.h . Modified: trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c =================================================================== --- trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.c 2007-09-18 17:20:50 UTC (rev 858) @@ -74,7 +74,7 @@ const GstCaps *caps); static GstPad *find_sink_pad (GstElement * element); static void update_volume (GstPlayBinMaemo *pbm, - gfloat volume); + gdouble volume); static void update_xid (GstPlayBinMaemo *pbm); static void new_decoded_pad_cb (GstElement *object, GstPad* pad, @@ -87,9 +87,11 @@ GstPad *pad, GstCaps *casp, gpointer user_data); +#if 0 static gboolean autoplug_continue_cb (GstElement* object, GstCaps* caps, gpointer user_data); +#endif static gboolean add_element (GstPlayBinMaemo *pbm, GstElement *child); static void clear_elements (GstPlayBinMaemo *pbm); @@ -182,6 +184,7 @@ play_bin_maemo = GST_PLAY_BIN_MAEMO (object); g_free (play_bin_maemo->uri); play_bin_maemo->uri = NULL; + clear_elements (GST_PLAY_BIN_MAEMO (object)); G_OBJECT_CLASS (parent_class)->dispose (object); } @@ -189,7 +192,6 @@ static void gst_play_bin_maemo_finalize (GObject * object) { - clear_elements (GST_PLAY_BIN_MAEMO (object)); G_OBJECT_CLASS (parent_class)->finalize (object); } @@ -312,17 +314,62 @@ } static void +_setup_decoder (GstPlayBinMaemo *pbm, GstElement *element) +{ + GList *factories; + GstCaps *all_caps; + //GstCaps *decode_caps; + + +// all_caps = gst_caps_new_empty (); + g_object_get (element, "caps", &all_caps, NULL); + all_caps = gst_caps_copy (all_caps); +// gst_caps_append (all_caps, decode_caps); + + /* loop over all the factories */ + for (factories = pbm->factories; factories; factories = g_list_next (factories)) { + GstElementFactory *factory = GST_ELEMENT_FACTORY (factories->data); + const GList *templates; + GList *walk; + + /* get the templates from the element factory */ + templates = gst_element_factory_get_static_pad_templates (factory); + for (walk = (GList *) templates; walk; walk = g_list_next (walk)) { + GstStaticPadTemplate *templ = walk->data; + + /* we only care about the sink templates */ + if (templ->direction == GST_PAD_SINK) { + GstCaps *tmpl_caps; + + /* try to intersect the caps with the caps of the template */ + tmpl_caps = gst_static_caps_get (&templ->static_caps); + gst_caps_append (all_caps, gst_caps_copy (tmpl_caps)); + gst_caps_ref (tmpl_caps); + } + } + } + + g_object_set (element, "caps", all_caps, NULL); +} + +static void prepare_elements (GstPlayBinMaemo *pbm) { GstElement *decoder; GstElement *queue; + queue = gst_element_factory_make ("queue", NULL); + add_element (pbm, queue); + decoder = gst_element_factory_make ("decodebin2", "decode"); + _setup_decoder (pbm, decoder); add_element (pbm, decoder); + /* g_signal_connect (G_OBJECT (decoder), "autoplug-continue", G_CALLBACK (autoplug_continue_cb), pbm); + */ g_signal_connect (G_OBJECT (decoder), "unknown-type", @@ -340,9 +387,6 @@ pbm); - queue = gst_element_factory_make ("queue", NULL); - add_element (pbm, queue); - if (gst_element_link_many (pbm->source, queue, decoder, NULL) == FALSE) { GST_WARNING ("FAIL TO LINK SRC WITH DECODEBIN2"); } @@ -609,6 +653,7 @@ return to_try; } +#if 0 static gboolean autoplug_continue_cb (GstElement* object, GstCaps* caps, @@ -641,6 +686,7 @@ return ret; } +#endif static void unknown_type_cb (GstElement *object, @@ -717,7 +763,7 @@ } else if (strstr (gst_element_factory_get_klass (factory), "Sink/Audio") != NULL) { GParamSpec *vol_spec; - GstElement *prev; + GstElement *prev = NULL; prev = queue; vol_spec = g_object_class_find_property (G_OBJECT_GET_CLASS (element), "volume"); @@ -747,8 +793,6 @@ } prev = volume; - } else { - g_param_spec_unref (vol_spec); } gst_bin_add (GST_BIN (bin), element); @@ -768,6 +812,7 @@ gst_element_add_pad (bin, gst_ghost_pad_new ("sink", pad)); gst_object_unref (pad); + return bin; error: @@ -810,8 +855,8 @@ GstElementFactory *factory = (GstElementFactory *) walk->data; GstElement *element; GstPad *sinkpad = NULL; - gint result; + if ((element = create_element (pbm, factory)) == NULL) { GST_WARNING_OBJECT (pbm, "Could not create an element from %s", gst_plugin_feature_get_name (GST_PLUGIN_FEATURE (factory))); @@ -861,7 +906,6 @@ g_list_free (comp); if (linked == FALSE) { - g_debug ("GstFlow Error"); GST_WARNING ("GstFlow ERROR"); } GST_PAD_STREAM_UNLOCK (pad); @@ -935,7 +979,7 @@ } static void -update_volume (GstPlayBinMaemo *pbm, gfloat volume) +update_volume (GstPlayBinMaemo *pbm, gdouble volume) { pbm->volume = volume; if (pbm->volume_element) { Modified: trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.h =================================================================== --- trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.h 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/gst-gmyth/playbinmaemo/gstplaybinmaemo.h 2007-09-18 17:20:50 UTC (rev 858) @@ -48,7 +48,7 @@ gboolean is_stream; gboolean parse_metadata; glong xid; - gfloat volume; + gdouble volume; /* currently loaded media */ gboolean need_rebuild; Modified: trunk/libgnomevfs2-mythtv/debian/changelog =================================================================== --- trunk/libgnomevfs2-mythtv/debian/changelog 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/libgnomevfs2-mythtv/debian/changelog 2007-09-18 17:20:50 UTC (rev 858) @@ -1,4 +1,4 @@ -libgnomevfs2-mythtv (0.3) unstable; urgency=low +libgnomevfs2-mythtv (0.3-indt1) unstable; urgency=low * Some bugs fixed * Livetv improved Modified: trunk/libgnomevfs2-mythtv/debian/control =================================================================== --- trunk/libgnomevfs2-mythtv/debian/control 2007-09-18 17:19:39 UTC (rev 857) +++ trunk/libgnomevfs2-mythtv/debian/control 2007-09-18 17:20:50 UTC (rev 858) @@ -3,6 +3,7 @@ Maintainer: Hallyson Melo <hal...@in...> Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), libglib2.0-dev, gmyth-dev (>= 0.3) Standards-Version: 3.6.1 +Section: user/library Package: libgnomevfs2-mythtv Section: user/library This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2008-02-01 14:30:18
|
Revision: 911 http://gmyth.svn.sourceforge.net/gmyth/?rev=911&view=rev Author: renatofilho Date: 2008-02-01 06:30:21 -0800 (Fri, 01 Feb 2008) Log Message: ----------- created release 0.7; moved debian dir to packages project Modified Paths: -------------- trunk/gmyth/configure.ac trunk/gmyth/src/gmyth_socket.c trunk/gmyth-stream/gmencoder/src/gmencoder.c trunk/gmyth-stream/server/plugins/transcoders/gmencoder.py trunk/gst-gmyth/debian/changelog Added Paths: ----------- trunk/packages/ trunk/packages/gmencoder-debian/ trunk/packages/gmencoder-debian/README.Debian trunk/packages/gmencoder-debian/changelog trunk/packages/gmencoder-debian/compat trunk/packages/gmencoder-debian/control trunk/packages/gmencoder-debian/copyright trunk/packages/gmencoder-debian/docs trunk/packages/gmencoder-debian/rules trunk/packages/gms-debian/ trunk/packages/gms-debian/changelog trunk/packages/gms-debian/compat trunk/packages/gms-debian/control trunk/packages/gms-debian/copyright trunk/packages/gms-debian/gms.install trunk/packages/gms-debian/gms.postinst trunk/packages/gms-debian/gms.postrm trunk/packages/gms-debian/rules trunk/packages/gmyth-dbus-debian/ trunk/packages/gmyth-dbus-debian/changelog trunk/packages/gmyth-dbus-debian/compat trunk/packages/gmyth-dbus-debian/control trunk/packages/gmyth-dbus-debian/rules trunk/packages/gmyth-debian/ trunk/packages/gmyth-debian/changelog trunk/packages/gmyth-debian/compat trunk/packages/gmyth-debian/control trunk/packages/gmyth-debian/gmyth-dev.install trunk/packages/gmyth-debian/gmyth-utils.install trunk/packages/gmyth-debian/gmyth.install trunk/packages/gmyth-debian/rules Removed Paths: ------------- trunk/gmyth/debian/ trunk/gmyth-dbus/debian/ trunk/gmyth-stream/gmencoder/debian/ trunk/gmyth-stream/server/debian/ Modified: trunk/gmyth/configure.ac =================================================================== --- trunk/gmyth/configure.ac 2008-02-01 13:38:20 UTC (rev 910) +++ trunk/gmyth/configure.ac 2008-02-01 14:30:21 UTC (rev 911) @@ -298,17 +298,8 @@ AC_SUBST(LDFLAGS) AC_SUBST(LIBS) -#pkg debian flags -DISTRIB_CODENAME="$(cat /etc/lsb-release | grep DISTRIB_CODENAME | cut -d'=' -f2)" -if test "x$DISTRIB_CODENAME" = "x"; then - DISTRIB_CODENAME="chinook" -fi -AC_SUBST(DISTRIB_CODENAME) - - AC_OUTPUT([ Makefile -debian/changelog src/Makefile samples/Makefile tests/Makefile Modified: trunk/gmyth/src/gmyth_socket.c =================================================================== --- trunk/gmyth/src/gmyth_socket.c 2008-02-01 13:38:20 UTC (rev 910) +++ trunk/gmyth/src/gmyth_socket.c 2008-02-01 14:30:21 UTC (rev 911) @@ -521,7 +521,7 @@ const gchar * hostname, gint port) { return gmyth_socket_connect_with_timeout(gmyth_socket, hostname, port, - 0); + 30); } gboolean @@ -573,6 +573,11 @@ /* * init socket descriptor */ + + g_debug ("FAMILY: %d, TYPE: %d, PROTOCOL: %d", + addr_info0->ai_family, + addr_info0->ai_socktype, + addr_info0->ai_protocol); gmyth_socket->sd = socket(addr_info0->ai_family, addr_info0->ai_socktype, addr_info0->ai_protocol); Modified: trunk/gmyth-stream/gmencoder/src/gmencoder.c =================================================================== --- trunk/gmyth-stream/gmencoder/src/gmencoder.c 2008-02-01 13:38:20 UTC (rev 910) +++ trunk/gmyth-stream/gmencoder/src/gmencoder.c 2008-02-01 14:30:21 UTC (rev 911) @@ -503,7 +503,8 @@ vcaps = gst_caps_new_simple("video/x-raw-yuv", "framerate", GST_TYPE_FRACTION, - (int) (fps * 1000), 1000, NULL); + (int) (fps * 1000), 1000, + NULL); if (gst_element_link_filtered(vrate, vencode, vcaps) == FALSE) { g_warning("Fail to link vrate with vencode."); @@ -1231,8 +1232,8 @@ GMencoderPrivate *priv = G_MENCODER_GET_PRIVATE(user_data); if (priv->timeout_id != 0) { - g_source_remove (priv->timeout_id); - priv->timeout_id = 0; + g_source_remove (priv->timeout_id); + priv->timeout_id = 0; } if (priv->send_chunked) { Modified: trunk/gmyth-stream/server/plugins/transcoders/gmencoder.py =================================================================== --- trunk/gmyth-stream/server/plugins/transcoders/gmencoder.py 2008-02-01 13:38:20 UTC (rev 910) +++ trunk/gmyth-stream/server/plugins/transcoders/gmencoder.py 2008-02-01 14:30:21 UTC (rev 911) @@ -55,8 +55,6 @@ self._insert_param("--audio-opts", self.params_first ("audio-opts", "")) self._insert_param("--mux-element", self.params_first("mux", "")) self._insert_param("--audio-rate", self.params_first("audio-rate", "")) - - # _parse_params def start(self, outfd): @@ -84,9 +82,9 @@ return False try: - if not outfile: - p = select.poll() - p.register (outfd, select.POLLNVAL | select.POLLERR | + if not outfile: + p = select.poll() + p.register (outfd, select.POLLNVAL | select.POLLERR | select.POLLHUP) tries = 0 while (self.proc and self.proc.poll() == None): Modified: trunk/gst-gmyth/debian/changelog =================================================================== --- trunk/gst-gmyth/debian/changelog 2008-02-01 13:38:20 UTC (rev 910) +++ trunk/gst-gmyth/debian/changelog 2008-02-01 14:30:21 UTC (rev 911) @@ -1,3 +1,9 @@ +gstreamer0.10-indt-plugins (0.10.14-svn20080107) gutsy; urgency=low + + * Relase 01/07/2007; + + -- Renato Araujo Oliveira Filho <ren...@in...> Mon, 07 Jan 2008 10:38:00 -0300 + gstreamer0.10-indt-plugins (0.10.2-svn20070914) unstable; urgency=low * Initial packaged; Added: trunk/packages/gmencoder-debian/README.Debian =================================================================== --- trunk/packages/gmencoder-debian/README.Debian (rev 0) +++ trunk/packages/gmencoder-debian/README.Debian 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,6 @@ +gmencoder for Debian +-------------------- + +<possible notes regarding this package - if none, delete this file> + + -- Hallyson Melo <hal...@in...> Mon, 17 Sep 2007 16:44:13 -0300 Added: trunk/packages/gmencoder-debian/changelog =================================================================== --- trunk/packages/gmencoder-debian/changelog (rev 0) +++ trunk/packages/gmencoder-debian/changelog 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,24 @@ +gmencoder (0.7-indt1) gutsy; urgency=low + + * Updated to same gmyth Release 0.7 + + -- Renato Filho <ren...@in...> Fri, 01 Feb 2008 11:00:00 -0300 + +gmencoder (0.2-indt2) gutsy; urgency=low + + * Bugs fix + + -- Hallyson Melo <hal...@in...> Wed, 07 Jan 2008 10:35:00 -0300 + +gmencoder (0.1-indt1) gutsy; urgency=low + + * release 11/21/2007 + + -- Hallyson Melo <hal...@in...> Wed, 17 Sep 2007 17:12:00 -0300 + +gmencoder (0.1-indt1) unstable; urgency=low + + * Initial release + + -- Hallyson Melo <hal...@in...> Mon, 17 Sep 2007 16:44:13 -0300 + Added: trunk/packages/gmencoder-debian/compat =================================================================== --- trunk/packages/gmencoder-debian/compat (rev 0) +++ trunk/packages/gmencoder-debian/compat 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1 @@ +5 Added: trunk/packages/gmencoder-debian/control =================================================================== --- trunk/packages/gmencoder-debian/control (rev 0) +++ trunk/packages/gmencoder-debian/control 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,12 @@ +Source: gmencoder +Section: user/multimedia +Priority: extra +Maintainer: Hallyson Melo <hal...@in...> +Build-Depends: debhelper (>= 5), autotools-dev, libgstreamer-plugins-base0.10-dev, libglib2.0-dev, libgnomevfs2-dev +Standards-Version: 3.7.2 + +Package: gmencoder +Section: user/multimedia +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libgstreamer-plugins-base0.10-0, libglib2.0-0, libgnomevfs2-0 +Description: GMencoder is an application similar to mencoder, but it uses gstreamer as its backend engine. Added: trunk/packages/gmencoder-debian/copyright =================================================================== --- trunk/packages/gmencoder-debian/copyright (rev 0) +++ trunk/packages/gmencoder-debian/copyright 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,22 @@ +This package was debianized by Hallyson Melo <hal...@in...> on +Mon, 17 Sep 2007 16:44:13 -0300. + +It was downloaded from <fill in http/ftp site> + +Upstream Author: <put author(s) name and email here> + +Copyright: <put the year(s) of the copyright, and the names of the + copyright holder(s) here> + +License: + +<Put the license of the package here> + + +The Debian packaging is (C) 2007, Hallyson Melo <hal...@in...> and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. + Added: trunk/packages/gmencoder-debian/docs =================================================================== --- trunk/packages/gmencoder-debian/docs (rev 0) +++ trunk/packages/gmencoder-debian/docs 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,2 @@ +NEWS +README Added: trunk/packages/gmencoder-debian/rules =================================================================== --- trunk/packages/gmencoder-debian/rules (rev 0) +++ trunk/packages/gmencoder-debian/rules 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,107 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/gmencoder.sgml > gmencoder.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/gmencoder. + $(MAKE) DESTDIR=$(CURDIR)/debian/gmencoder install + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install Property changes on: trunk/packages/gmencoder-debian/rules ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gms-debian/changelog =================================================================== --- trunk/packages/gms-debian/changelog (rev 0) +++ trunk/packages/gms-debian/changelog 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,18 @@ +gms (0.7-indt1) gutsy; urgency=low + + * Updated to same gmyth Release 0.7 + + -- Renato Filho <ren...@in...> Fri, 01 Feb 2008 11:00:00 -0300 + +gms (0.3-indt2) unstable; urgency=low + + * Added gmencoder package as a dependency + + -- Hallyson Melo <hal...@in...> Thu, 16 Aug 2007 15:00:00 -0300 + +gms (0.3-indt1) unstable; urgency=low + + * First package + + -- Renato Araujo Oliveira Filho <ren...@in...> Thu, 16 Aug 2007 14:55:00 -0300 + Added: trunk/packages/gms-debian/compat =================================================================== --- trunk/packages/gms-debian/compat (rev 0) +++ trunk/packages/gms-debian/compat 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1 @@ +5 Added: trunk/packages/gms-debian/control =================================================================== --- trunk/packages/gms-debian/control (rev 0) +++ trunk/packages/gms-debian/control 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,12 @@ +Source: gms +Section: sound +Priority: optional +Maintainer: Renato Araujo Oliveira Filho <ren...@in...> +Build-Depends: debhelper (>= 5.0.38), python-support (>= 0.5), python-central (>= 0.5) +Standards-Version: 3.7.2 + +Package: gms +Architecture: any +Depends: ${python:Depends}, gmencoder +Description: Media transcoder deamon + Homepage: http://gmyth.sourceforge.net/ Added: trunk/packages/gms-debian/copyright =================================================================== --- trunk/packages/gms-debian/copyright (rev 0) +++ trunk/packages/gms-debian/copyright 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,19 @@ +It was downloaded from: http://gmyth.sourceforge.net/wiki/ + +License: + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General Public License can +be found in `/usr/share/common-licenses/GPL'. Added: trunk/packages/gms-debian/gms.install =================================================================== --- trunk/packages/gms-debian/gms.install (rev 0) +++ trunk/packages/gms-debian/gms.install 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,8 @@ +debian/tmp/usr/share/gms/lib/*.py usr/share/gms/lib +debian/tmp/usr/share/gms/plugins/*.py usr/share/gms/plugins +debian/tmp/usr/share/gms/plugins/transcoders/*.py usr/share/gms/plugins/transcoders +debian/tmp/usr/share/gms/plugins/transcoders/mencoder_lib/*.py usr/share/gms/plugins/transcoders/mencoder_lib +debian/tmp/usr/share/gms/html/* usr/share/gms/html +debian/tmp/usr/bin/* usr/bin +debian/etc/init.d/gmsd etc/init.d +debian/etc/gms/*.conf etc/gms/ Property changes on: trunk/packages/gms-debian/gms.install ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gms-debian/gms.postinst =================================================================== --- trunk/packages/gms-debian/gms.postinst (rev 0) +++ trunk/packages/gms-debian/gms.postinst 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,29 @@ +#! /bin/sh +# postinst script for gms + +set -e + +case "$1" in + configure) + if ! getent passwd gms >/dev/null; then + adduser --disabled-password --quiet --system \ + --home /var/gms-media \ + --gecos "GMS media dir" --group gms + fi + if ! getent passwd gms | grep -q /var/run/gms; then + usermod -d /var/gms-media gms + fi + update-rc.d gmsd defaults + invoke-rc.d gmsd start + ;; + abort-upgrade|abort-remove|abort-deconfigure) + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 Added: trunk/packages/gms-debian/gms.postrm =================================================================== --- trunk/packages/gms-debian/gms.postrm (rev 0) +++ trunk/packages/gms-debian/gms.postrm 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +#DEBHELPER# + +if [ "$1" = "purge" ] ; then + invoke-rc.d --force gms stop + deluser --quiet --system gms > /dev/null || true + delgroup --quiet --system gms > /dev/null || true +fi + +exit 0 Added: trunk/packages/gms-debian/rules =================================================================== --- trunk/packages/gms-debian/rules (rev 0) +++ trunk/packages/gms-debian/rules 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,52 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PYVER=2.5 +PYTHON=python$(PYVER) + +PREFIX=debian/tmp + +build: build-stamp + +build-stamp: + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_installdirs + dh_clean -k + + @rm -rf build + @$(PYTHON) setup.py install --prefix=$(PREFIX)/usr --no-compile --install-purelib=$(PREFIX)/usr/share/gms + install -D -o root -g root -m 755 $(PREFIX)/usr/etc/init.d/gmsd debian/$(cdbs_curpkg)/etc/init.d/gmsd + install -D -o root -g root -m 755 $(PREFIX)/usr/etc/gms/server.conf debian/$(cdbs_curpkg)/etc/gms/server.conf + + dh_install + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep +.PHONY: clean binary-indep binary install + Property changes on: trunk/packages/gms-debian/rules ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gmyth-dbus-debian/changelog =================================================================== --- trunk/packages/gmyth-dbus-debian/changelog (rev 0) +++ trunk/packages/gmyth-dbus-debian/changelog 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,36 @@ +gmyth-dbus (0.7-indt1) gutsy; urgency=low + + * Updated to same gmyth Release 0.7 + + -- Renato Filho <ren...@in...> Fri, 01 Feb 2008 11:00:00 -0300 + +gmyth-dbus (0.1.4) unstable; urgency=low + + * Fixed dbus interface bug for add_exception function. + + -- Hallyson <hal...@nd...> Fri, 01 Feb 2008 10:35:55 -0300 + +gmyth-dbus (0.1.3) unstable; urgency=low + + * updated to gmyth 0.6; + + -- Hallyson Melo <hal...@in...> Fri, 23 Jan 2008 17:08:00 -0300 + +gmyth-dbus (0.1.2) unstable; urgency=low + + * Release 11/19/2007; + + -- Hallyson Melo <hal...@in...> Fri, 11 Nov 2007 15:00:00 -0300 + +gmyth-dbus (0.1.1) unstable; urgency=low + + * Implemented error propagation; + + -- Hallyson Melo <hal...@in...> Fri, 29 Oct 2006 14:00:16 -0300 + +gmyth-dbus (0.1) unstable; urgency=low + + * Initial Package. + + -- Hallyson Melo <hal...@in...> Fri, 25 Oct 2006 14:00:16 -0300 + Added: trunk/packages/gmyth-dbus-debian/compat =================================================================== --- trunk/packages/gmyth-dbus-debian/compat (rev 0) +++ trunk/packages/gmyth-dbus-debian/compat 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1 @@ +4 Added: trunk/packages/gmyth-dbus-debian/control =================================================================== --- trunk/packages/gmyth-dbus-debian/control (rev 0) +++ trunk/packages/gmyth-dbus-debian/control 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,13 @@ +Source: gmyth-dbus +Priority: optional +Maintainer: Hallyson Melo <hal...@in...> +Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), gmyth-dev (>= 0.6), libdbus-glib-1-dev +Standards-Version: 3.6.2 +Section: user/library + +Package: gmyth-dbus +Section: user/library +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, gmyth (>= 0.6), libdbus-glib-1-2 +Description: The gmyth dbus interface. + Added: trunk/packages/gmyth-dbus-debian/rules =================================================================== --- trunk/packages/gmyth-dbus-debian/rules (rev 0) +++ trunk/packages/gmyth-dbus-debian/rules 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk + +# debian package version +version=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) + +maint: debian/control + +common_conf_flags = \ + --disable-debug + +# FIXME: should disable docs for arch only builds +DEB_CONFIGURE_EXTRA_FLAGS := $(common_conf_flags) + + +.PHONY: maint Property changes on: trunk/packages/gmyth-dbus-debian/rules ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gmyth-debian/changelog =================================================================== --- trunk/packages/gmyth-debian/changelog (rev 0) +++ trunk/packages/gmyth-debian/changelog 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,53 @@ +gmyth (0.7-indt1) gutsy; urgency=low + + * Release 0.7 + + -- Renato Araujo <ren...@in...> Fri, 01 Feb 2008 11:00:08 -0300 + +gmyth (0.6-indt1) @DISTRIB_CODENAME@; urgency=low + + * changed types of channel_id, program_id; + + -- Renato Araujo <ren...@in...> Fri, 23 Jan 2008 17:06:08 -0300 + +gmyth (0.5-indt1) @DISTRIB_CODENAME@; urgency=low + + * bug fixes; + + -- Renato Araujo <ren...@in...> Fri, 04 Jan 2008 11:16:08 -0300 + +gmyth (0.4.2-chinook-indt1) unstable; urgency=low + + * Patch from Tim Philipp to fix debian/control libcurl dependency + + -- Hallyson Melo <hal...@in...> Mon, 08 Oct 2007 10:49:19 -0300 + +gmyth (0.4-indt1) unstable; urgency=low + + * Bug fixes + * Improvements in the schedule management (add all schedule, add exception, ...) + * GMythBackendInfo now has db_port + + -- Hallyson Melo <hal...@in...> Thu, 22 Aug 2007 14:46:08 -0300 + +gmyth (0.3) unstable; urgency=low + + * Update file_reader an serveral bug fixes; + + -- Renato Araujo <ren...@in...> Thu, 12 Apr 2007 14:46:08 -0300 + +gmyth (0.2) unstable; urgency=low + + * Included several http_requests in order to replace mysql queries (MythProtocol >= 33) + * Included remote file transcoding request and jobqueue request (need to apply patch) + * Included recording profile management (need to apply patch) + * Several bug fixes + + -- Hallyson Melo <hal...@in...> Mon, 5 Mar 2007 14:46:08 -0300 + +gmyth (0.1) unstable; urgency=low + + * Initial Maemo Package. + + -- Hallyson Melo <hal...@in...> Fri, 15 Sep 2006 10:26:16 -0300 + Added: trunk/packages/gmyth-debian/compat =================================================================== --- trunk/packages/gmyth-debian/compat (rev 0) +++ trunk/packages/gmyth-debian/compat 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1 @@ +4 Added: trunk/packages/gmyth-debian/control =================================================================== --- trunk/packages/gmyth-debian/control (rev 0) +++ trunk/packages/gmyth-debian/control 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,25 @@ +Source: gmyth +Priority: optional +Maintainer: Hallyson Melo <hal...@in...> +Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), libcurl3-dev | libcurl4-gnutls-dev, libxml2-dev, libglib2.0-dev, libmysqlclient15-dev | libmysqlclient14-dev +Standards-Version: 3.6.2 +Section: user/library + +Package: gmyth +Section: user/library +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libcurl3 | libcurl4-gnutls, libxml2, libglib2.0-0, libmysqlclient15 | libmysqlclient15off | libmysqlclient14 +Description: The gmyth library binary files. GMyth is a library intended to access mythtv backend functionalities from a glib/gobject perspective. It includes access to the program guide, recorded programs, scheduling, etc. + +Package: gmyth-dev +Section: user/library +Architecture: any +Depends: gmyth (= ${Source-Version}), libcurl3-dev | libcurl4-gnutls-dev, libxml2-dev, libglib2.0-dev, libmysqlclient15-dev | libmysqlclient14-dev +Description: The gmyth library development files. GMyth is a library intended to access mythtv backend functionalities from a glib/gobject perspective. It includes access to the program guide, recorded programs, scheduling, etc. + +Package: gmyth-utils +Section: user/multimedia +Architecture: any +Depends: gmyth (= ${binary:Version}) +Description: The gmyth utils package. It contain the application gmyth-cat. + Added: trunk/packages/gmyth-debian/gmyth-dev.install =================================================================== --- trunk/packages/gmyth-debian/gmyth-dev.install (rev 0) +++ trunk/packages/gmyth-debian/gmyth-dev.install 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,6 @@ +debian/tmp/usr/include/* +debian/tmp/usr/lib/lib*.a +debian/tmp/usr/lib/lib*.so +debian/tmp/usr/lib/pkgconfig/* +debian/tmp/usr/lib/*.la +debian/tmp/usr/share/pkgconfig/* Added: trunk/packages/gmyth-debian/gmyth-utils.install =================================================================== --- trunk/packages/gmyth-debian/gmyth-utils.install (rev 0) +++ trunk/packages/gmyth-debian/gmyth-utils.install 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1 @@ +debian/tmp/usr/bin/* Added: trunk/packages/gmyth-debian/gmyth.install =================================================================== --- trunk/packages/gmyth-debian/gmyth.install (rev 0) +++ trunk/packages/gmyth-debian/gmyth.install 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1 @@ +debian/tmp/usr/lib/lib*.so.* Added: trunk/packages/gmyth-debian/rules =================================================================== --- trunk/packages/gmyth-debian/rules (rev 0) +++ trunk/packages/gmyth-debian/rules 2008-02-01 14:30:21 UTC (rev 911) @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk + +# debian package version +version=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) + +maint: debian/control + +common_conf_flags = \ + --disable-debug + +# FIXME: should disable docs for arch only builds +DEB_CONFIGURE_EXTRA_FLAGS := $(common_conf_flags) + + +.PHONY: maint Property changes on: trunk/packages/gmyth-debian/rules ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2008-02-04 18:23:45
|
Revision: 918 http://gmyth.svn.sourceforge.net/gmyth/?rev=918&view=rev Author: renatofilho Date: 2008-02-04 10:23:49 -0800 (Mon, 04 Feb 2008) Log Message: ----------- moved debian dir from gst-gmyth and libgnomevfs2-mythtv to packages project Modified Paths: -------------- trunk/gmyth/configure.ac trunk/gmyth/src/gmyth_backendinfo.c trunk/gmyth/src/gmyth_backendinfo.h trunk/gmyth/src/gmyth_programinfo.h trunk/libgnomevfs2-mythtv/AUTHORS Added Paths: ----------- trunk/packages/gst-debian/ trunk/packages/gst-debian/changelog trunk/packages/gst-debian/compat trunk/packages/gst-debian/control trunk/packages/gst-debian/copyright trunk/packages/gst-debian/gstreamer0.10-indt-mythtvsrc.install trunk/packages/gst-debian/gstreamer0.10-indt-nuvdemux.install trunk/packages/gst-debian/maemo-nuvdemux.install trunk/packages/gst-debian/maemo-nuvdemux.postinst trunk/packages/gst-debian/nuv.xml trunk/packages/gst-debian/osso_media_server_nuv.schemas trunk/packages/gst-debian/rules trunk/packages/gvfs-debian/ trunk/packages/gvfs-debian/README.Debian trunk/packages/gvfs-debian/changelog trunk/packages/gvfs-debian/compat trunk/packages/gvfs-debian/control trunk/packages/gvfs-debian/copyright trunk/packages/gvfs-debian/dirs trunk/packages/gvfs-debian/rules Removed Paths: ------------- trunk/gst-gmyth/debian/ trunk/libgnomevfs2-mythtv/debian/ Modified: trunk/gmyth/configure.ac =================================================================== --- trunk/gmyth/configure.ac 2008-02-04 18:18:05 UTC (rev 917) +++ trunk/gmyth/configure.ac 2008-02-04 18:23:49 UTC (rev 918) @@ -3,14 +3,14 @@ AC_PREREQ(2.50) -AC_INIT([gmyth],[0.4.1]) +AC_INIT([gmyth],[0.7.0]) AC_CONFIG_SRCDIR([src/gmyth.h]) AC_CONFIG_HEADER(config.h) dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, SVN and prerelease does Werror too -AS_VERSION(gmyth, GMYTH, 0, 4, 1, 0, GMYTH_SVN="no", GMYTH_SVN="yes") +AS_VERSION(gmyth, GMYTH, 0, 7, 0, 0, GMYTH_SVN="no", GMYTH_SVN="yes") GMYTH_MAJORMINOR=$GMYTH_MAJOR_VERSION.$GMYTH_MINOR_VERSION AC_SUBST(GMYTH_MAJORMINOR) Modified: trunk/gmyth/src/gmyth_backendinfo.c =================================================================== --- trunk/gmyth/src/gmyth_backendinfo.c 2008-02-04 18:18:05 UTC (rev 917) +++ trunk/gmyth/src/gmyth_backendinfo.c 2008-02-04 18:23:49 UTC (rev 918) @@ -41,8 +41,8 @@ static void gmyth_backend_info_dispose(GObject * object); static void gmyth_backend_info_finalize(GObject * object); -G_DEFINE_TYPE(GMythBackendInfo, gmyth_backend_info, G_TYPE_OBJECT) - static void gmyth_backend_info_class_init(GMythBackendInfoClass * +G_DEFINE_TYPE(GMythBackendInfo, gmyth_backend_info, G_TYPE_OBJECT); +static void gmyth_backend_info_class_init(GMythBackendInfoClass * klass) { GObjectClass *gobject_class; Modified: trunk/gmyth/src/gmyth_backendinfo.h =================================================================== --- trunk/gmyth/src/gmyth_backendinfo.h 2008-02-04 18:18:05 UTC (rev 917) +++ trunk/gmyth/src/gmyth_backendinfo.h 2008-02-04 18:23:49 UTC (rev 918) @@ -84,7 +84,7 @@ }; -GType gmyth_backend_info_get_type (void) G_GNUC_CONST;; +GType gmyth_backend_info_get_type (void) G_GNUC_CONST; GMythBackendInfo* gmyth_backend_info_new (void); GMythBackendInfo* gmyth_backend_info_new_full (const gchar *hostname, const gchar *username, Modified: trunk/gmyth/src/gmyth_programinfo.h =================================================================== --- trunk/gmyth/src/gmyth_programinfo.h 2008-02-04 18:18:05 UTC (rev 917) +++ trunk/gmyth/src/gmyth_programinfo.h 2008-02-04 18:23:49 UTC (rev 918) @@ -149,7 +149,7 @@ GString *hostname; }; -GType gmyth_program_info_type(void); +GType gmyth_program_info_get_type(void); GMythProgramInfo *gmyth_program_info_new(void); Modified: trunk/libgnomevfs2-mythtv/AUTHORS =================================================================== --- trunk/libgnomevfs2-mythtv/AUTHORS 2008-02-04 18:18:05 UTC (rev 917) +++ trunk/libgnomevfs2-mythtv/AUTHORS 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,4 @@ +Alexsandro Jose Virginio dos Santos <ale...@in...> +Hallyson Luiz de Morais Melo <hal...@in...> +Leonardo Sobral Cunha <leo...@in...> +Rosfran Lins Borges <ros...@in...> Added: trunk/packages/gst-debian/changelog =================================================================== --- trunk/packages/gst-debian/changelog (rev 0) +++ trunk/packages/gst-debian/changelog 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,12 @@ +gstreamer0.10-indt-plugins (0.10.14-svn20080107) gutsy; urgency=low + + * Relase 01/07/2007; + + -- Renato Araujo Oliveira Filho <ren...@in...> Mon, 07 Jan 2008 10:38:00 -0300 + +gstreamer0.10-indt-plugins (0.10.2-svn20070914) unstable; urgency=low + + * Initial packaged; + + -- Renato Araujo Oliveira Filho <ren...@in...> Thu, 09 Nov 2006 15:58:00 -0300 + Added: trunk/packages/gst-debian/compat =================================================================== --- trunk/packages/gst-debian/compat (rev 0) +++ trunk/packages/gst-debian/compat 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1 @@ +4 Added: trunk/packages/gst-debian/control =================================================================== --- trunk/packages/gst-debian/control (rev 0) +++ trunk/packages/gst-debian/control 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,30 @@ +Source: gstreamer0.10-indt-plugins +Section: user/library +Priority: optional +Maintainer: Renato Araujo Oliveira Filho <ren...@in...> +Build-Depends: debhelper (>= 4.1.0), cdbs (>= 0.4.8), autotools-dev, pkg-config (>= 0.11.0), libgstreamer0.10-dev (>= 0.10.0), gmyth-dev (>= 0.3) +Standards-Version: 3.6.2 +Section: user/library + +Package: gstreamer0.10-indt-nuvdemux +Architecture: any +Section: user/library +Depends: ${misc:Depends}, ${shlibs:Depends} +Replaces: gstreamer0.10-plugins-bad +Description: INdT nuv demux GStreamer plugin + This GStreamer plugin permits demux of Nuv streams. + +Package: gstreamer0.10-indt-mythtvsrc +Architecture: any +Section: user/library +Depends: ${misc:Depends}, ${shlibs:Depends}, gmyth (>= 0.3) +Description: INdT mythtv source GStreamer plugin + This GStreamer plugin permits read streamer from MythTv Server + +Package: maemo-nuvdemux +Architecture: all +Section: user/library +Depends: gstreamer0.10-indt-nuvdemux +Description: enable support to nuvdemux on osso media server (meta-package) + This package is a meta-package that, when installed, guarantees that you + have support to nuv files on osso-media-server. Added: trunk/packages/gst-debian/copyright =================================================================== --- trunk/packages/gst-debian/copyright (rev 0) +++ trunk/packages/gst-debian/copyright 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,23 @@ +This package was debianized by Renato Araujo Oliveira Filho <ren...@in...> on +Thu, 09 Nov 2006 15:58:00 -0300. + +Copyright Holder: 2006 INdT + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. Added: trunk/packages/gst-debian/gstreamer0.10-indt-mythtvsrc.install =================================================================== --- trunk/packages/gst-debian/gstreamer0.10-indt-mythtvsrc.install (rev 0) +++ trunk/packages/gst-debian/gstreamer0.10-indt-mythtvsrc.install 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1 @@ +debian/tmp/usr/lib/gstreamer-*/*mythtvsrc*.so Added: trunk/packages/gst-debian/gstreamer0.10-indt-nuvdemux.install =================================================================== --- trunk/packages/gst-debian/gstreamer0.10-indt-nuvdemux.install (rev 0) +++ trunk/packages/gst-debian/gstreamer0.10-indt-nuvdemux.install 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1 @@ +debian/tmp/usr/lib/gstreamer-*/*nuvdemux*.so Added: trunk/packages/gst-debian/maemo-nuvdemux.install =================================================================== --- trunk/packages/gst-debian/maemo-nuvdemux.install (rev 0) +++ trunk/packages/gst-debian/maemo-nuvdemux.install 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,2 @@ +debian/nuv.xml usr/share/mime/packages/ +debian/osso_media_server_nuv.schemas usr/share/gconf/schemas Added: trunk/packages/gst-debian/maemo-nuvdemux.postinst =================================================================== --- trunk/packages/gst-debian/maemo-nuvdemux.postinst (rev 0) +++ trunk/packages/gst-debian/maemo-nuvdemux.postinst 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,24 @@ +#! /bin/sh +set -e + +#DEBHELPER# + +# Register our X Desktop Group Shared MIME-info Database info +if [ -x /usr/bin/update-mime-database ] ; then + /usr/bin/update-mime-database /usr/share/mime +fi + +# Register a new type on Osso Media Server +if [ -x /usr/bin/gconftool-2 ] ; then + /usr/bin/gconftool-2 --makefile-install-rule /usr/share/gconf/schemas/osso_media_server_nuv.schemas +fi + +#append nuv info on osso mediaplayer ui +data_file=/usr/share/applications/hildon/mp_ui.desktop +tmp_file=/tmp/mp_ui.desktop +cat $data_file | sed 's/X-Osso-URI-Actions=rtsp/X-Osso-URI-Actions=rtsp;myth/' | sed 's/MimeType=\(.*\)/MimeType=\1;video\/x-nuv/' > $tmp_file +echo -e "\n\n[X-Osso-URI-Action Handler myth] \nMethod=mime_open\nName=medi_ap_mediaplayer_name\nTranslationDomain=mediaplayer" >> $tmp_file +cat $tmp_file > $data_file +echo "FILE DESKTOP UPDATED" + +exit 0 Added: trunk/packages/gst-debian/nuv.xml =================================================================== --- trunk/packages/gst-debian/nuv.xml (rev 0) +++ trunk/packages/gst-debian/nuv.xml 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info" + xmlns:osso="http://nokia.com/osso/mime-categories"> + <mime-type type="video/x-nuv"> + <comment>Nuv File</comment> + <comment xml:lang="en">Mythtv Nuv file container</comment> + <magic priority="60"> + <match value="MythTVVideo" type="string" offset="0"/> + </magic> + <glob pattern="*.nuv"/> + <osso:category name="video"/> + </mime-type> +</mime-info> Added: trunk/packages/gst-debian/osso_media_server_nuv.schemas =================================================================== --- trunk/packages/gst-debian/osso_media_server_nuv.schemas (rev 0) +++ trunk/packages/gst-debian/osso_media_server_nuv.schemas 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,16 @@ +<?xml version="1.0"?> +<gconfschemafile> + <schemalist> + <schema> + <key>/schemas/apps/osso/osso_media_server/demux_video/video_x-nuv</key> + <applyto>/apps/osso/osso_media_server/demux_video/video_x-nuv</applyto> + <owner>osso_media_server</owner> + <type>list</type> + <list_type>string</list_type> + <default>[video/x-nuv,nuvdemux]</default> + <locale name="C"> + <short>Play MYTHTV .nuv files.</short> + </locale> + </schema> + </schemalist> +</gconfschemafile> Added: trunk/packages/gst-debian/rules =================================================================== --- trunk/packages/gst-debian/rules (rev 0) +++ trunk/packages/gst-debian/rules 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/cdbs/1/rules/utils.mk + +# debian package version +version=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) + +maint: debian/control + +binary-install/gstreamer0.10-indt-nuvdemux:: + rm -f debian/gstreamer0.10-indt-nuvdemux/usr/lib/gstreamer-0.10/libgstnuvdemux.la + rm -f debian/gstreamer0.10-indt-nuvdemux/usr/lib/gstreamer-0.10/libgstnuvdemux.a + rm -f debian/gstreamer0.10-indt-nuvdemux/usr/lib/gstreamer-0.10/libgsttypefindfunctions_indt.la + rm -f debian/gstreamer0.10-indt-nuvdemux/usr/lib/gstreamer-0.10/libgsttypefindfunctions_indt.a + +.PHONY: maint Property changes on: trunk/packages/gst-debian/rules ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gvfs-debian/README.Debian =================================================================== --- trunk/packages/gvfs-debian/README.Debian (rev 0) +++ trunk/packages/gvfs-debian/README.Debian 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,6 @@ +libgnomevfs2-mythtv for Debian +------------------ + +This package provides the libgnomevfs2 mythtv modules. + + -- Hallyson Melo <hal...@in...>, Tue, 20 Oct 2006 10:53:12 -0300 Property changes on: trunk/packages/gvfs-debian/README.Debian ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gvfs-debian/changelog =================================================================== --- trunk/packages/gvfs-debian/changelog (rev 0) +++ trunk/packages/gvfs-debian/changelog 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,21 @@ +libgnomevfs2-mythtv (0.7-indt1) unstable; urgency=low + + * Updated version to 0.7; + + -- Hallyson Melo <hal...@in...> Mon, 04 Feb 2008 15:19:00 -0300 + +libgnomevfs2-mythtv (0.3-indt1) unstable; urgency=low + + * Some bugs fixed + * Livetv improved + * API updated to gmyth-0.3 + * Added some tests + + -- Hallyson Melo <hal...@in...> Mon, 14 May 2007 18:12:58 -0300 + +libgnomevfs2-mythtv (0.1.1) unstable; urgency=low + + * Initial release + + -- Hallyson Melo <hal...@in...> Tue, 20 Oct 2006 10:53:12 -0300 + Property changes on: trunk/packages/gvfs-debian/changelog ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gvfs-debian/compat =================================================================== --- trunk/packages/gvfs-debian/compat (rev 0) +++ trunk/packages/gvfs-debian/compat 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1 @@ +4 Property changes on: trunk/packages/gvfs-debian/compat ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gvfs-debian/control =================================================================== --- trunk/packages/gvfs-debian/control (rev 0) +++ trunk/packages/gvfs-debian/control 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,15 @@ +Source: libgnomevfs2-mythtv +Priority: optional +Maintainer: Hallyson Melo <hal...@in...> +Build-Depends: debhelper (>= 4.0.0), autotools-dev, cdbs (>= 0.4.0), libglib2.0-dev, gmyth-dev (>= 0.3) +Standards-Version: 3.6.1 +Section: user/library + +Package: libgnomevfs2-mythtv +Section: user/library +Architecture: any +Depends: libglib2.0-0, gmyth (>= 0.3) +Description: libgnomevfs2-mythtv + Contains the gnomevfs2 modules for Mythtv protocol. It allows access backend recorded program files and livetv. + . + This package contains the libgnomevfs2 mythtv modules. Property changes on: trunk/packages/gvfs-debian/control ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gvfs-debian/copyright =================================================================== --- trunk/packages/gvfs-debian/copyright (rev 0) +++ trunk/packages/gvfs-debian/copyright 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,23 @@ +This package was debianized by Hallyson Melo <hal...@in...> on +Tue, 16 May 2006 10:53:12 -0300. + +Copyright Holder: 2006 INdT + +License: + + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian GNU/Linux systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'. Property changes on: trunk/packages/gvfs-debian/copyright ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gvfs-debian/dirs =================================================================== --- trunk/packages/gvfs-debian/dirs (rev 0) +++ trunk/packages/gvfs-debian/dirs 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,2 @@ +usr/lib/gnome-vfs-2.0/modules/ +etc/gnome-vfs-2.0/modules/ Property changes on: trunk/packages/gvfs-debian/dirs ___________________________________________________________________ Name: svn:executable + * Added: trunk/packages/gvfs-debian/rules =================================================================== --- trunk/packages/gvfs-debian/rules (rev 0) +++ trunk/packages/gvfs-debian/rules 2008-02-04 18:23:49 UTC (rev 918) @@ -0,0 +1,21 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk + +# debian package version +version=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) + +maint: debian/control + +common_conf_flags = \ + --disable-debug + +# FIXME: should disable docs for arch only builds +DEB_CONFIGURE_EXTRA_FLAGS := $(common_conf_flags) + +DEB_INSTALL_DOCS_ALL += debian/README.Debian NEWS + +.PHONY: maint Property changes on: trunk/packages/gvfs-debian/rules ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2008-02-26 14:10:25
|
Revision: 939 http://gmyth.svn.sourceforge.net/gmyth/?rev=939&view=rev Author: renatofilho Date: 2008-02-26 06:10:22 -0800 (Tue, 26 Feb 2008) Log Message: ----------- - release 26/02/2008 - 0.7.1 Modified Paths: -------------- trunk/gmyth/autogen.sh trunk/gmyth/configure.ac trunk/gmyth-dbus/Makefile.am trunk/gmyth-dbus/autogen.sh trunk/gmyth-dbus/configure.ac trunk/gmyth-stream/gmencoder/configure.ac trunk/gmyth-stream/server/setup.py trunk/gmyth-upnp/configure.ac trunk/packages/gmencoder-debian/changelog trunk/packages/gms-debian/changelog trunk/packages/gmyth-debian/changelog trunk/packages/gst-debian/changelog Modified: trunk/gmyth/autogen.sh =================================================================== --- trunk/gmyth/autogen.sh 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/gmyth/autogen.sh 2008-02-26 14:10:22 UTC (rev 939) @@ -16,4 +16,4 @@ echo "You need to install gnome-common from the GNOME CVS" exit 1 } -REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh -I./m4 +REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh Modified: trunk/gmyth/configure.ac =================================================================== --- trunk/gmyth/configure.ac 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/gmyth/configure.ac 2008-02-26 14:10:22 UTC (rev 939) @@ -1,4 +1,4 @@ -AC_INIT(gmyth, 0.7.0) +AC_INIT(gmyth, 0.7.1) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.ac) AC_CANONICAL_BUILD Modified: trunk/gmyth-dbus/Makefile.am =================================================================== --- trunk/gmyth-dbus/Makefile.am 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/gmyth-dbus/Makefile.am 2008-02-26 14:10:22 UTC (rev 939) @@ -1,7 +1,8 @@ SUBDIRS = src data -EXTRA_DIST = \ - ChangeLog - -DIST_SUBDIRS = \ - src data +EXTRA_DIST = \ + autogen.sh \ + AUTHORS \ + COPYING \ + README + Modified: trunk/gmyth-dbus/autogen.sh =================================================================== --- trunk/gmyth-dbus/autogen.sh 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/gmyth-dbus/autogen.sh 2008-02-26 14:10:22 UTC (rev 939) @@ -16,4 +16,4 @@ echo "You need to install gnome-common from the GNOME CVS" exit 1 } -REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh +REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh -I./m4 Modified: trunk/gmyth-dbus/configure.ac =================================================================== --- trunk/gmyth-dbus/configure.ac 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/gmyth-dbus/configure.ac 2008-02-26 14:10:22 UTC (rev 939) @@ -1,49 +1,23 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. +AC_INIT(gmyth-dbus,0.7.0) +AC_PREREQ(2.52) +AC_CONFIG_SRCDIR(configure.ac) +AC_CANONICAL_BUILD +AC_CANONICAL_HOST +AC_ISC_POSIX -AC_PREREQ(2.50) +AM_INIT_AUTOMAKE(1.6 dist-bzip2) +AM_CONFIG_HEADER(config.h) -AC_INIT([gmyth-dbus],[0.7]) - -AC_CONFIG_MACRO_DIR([m4]) -AC_CONFIG_HEADER(config.h) - -dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode -AM_MAINTAINER_MODE dnl make aclocal work in maintainer mode AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") -AM_INIT_AUTOMAKE($PACKAGE, $VERSION) - -# Checks for programs. -# check for tools -# Make sure CFLAGS is defined to stop AC_PROC_CC adding -g -CFLAGS="$CFLAGS -Wall" +C_PROG_CXX AC_PROG_CC -AC_PROG_LIBTOOL - -# Checks for libraries. - -# Checks for header files. +AM_PROG_CC_STDC AC_HEADER_STDC +AC_C_BIGENDIAN +AC_C_CONST -#Test if --disable-debug given -AC_ARG_ENABLE(debug, - AC_HELP_STRING([--disable-debug], [enable debugging mode])) -if test x"$enable_debug" != xno; then - CFLAGS="$CFLAGS -g -DMYTH_STREAM_USE_DEBUG" -else - CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS" -fi - - -AS_AC_EXPAND(DATADIR, $datadir) - -DBUS_SERVICES_DIR="$DATADIR/dbus-1/services" -AC_SUBST(DBUS_SERVICES_DIR) -AC_DEFINE_UNQUOTED(DBUS_SERVICES_DIR, "$DBUS_SERVICES_DIR", [Where services dir for DBUS is]) - - # Checks required packages #################################################### ############################################################################### @@ -76,15 +50,9 @@ AC_SUBST(LDFLAGS) AC_SUBST(LIBS) -AC_OUTPUT([ +AC_OUTPUT( Makefile src/Makefile data/Makefile data/br.org.indt.GMyth.service -]) - -if test "x$enable_debug" != "xno"; then - AC_MSG_NOTICE([Debug: Enabled]) -else - AC_MSG_NOTICE([Debug: Disabled]) -fi +) Modified: trunk/gmyth-stream/gmencoder/configure.ac =================================================================== --- trunk/gmyth-stream/gmencoder/configure.ac 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/gmyth-stream/gmencoder/configure.ac 2008-02-26 14:10:22 UTC (rev 939) @@ -3,7 +3,7 @@ AC_PREREQ(2.50) -AC_INIT([gmemcoder],[0.1]) +AC_INIT([gmemcoder],[0.7.1]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADER(config.h) Modified: trunk/gmyth-stream/server/setup.py =================================================================== --- trunk/gmyth-stream/server/setup.py 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/gmyth-stream/server/setup.py 2008-02-26 14:10:22 UTC (rev 939) @@ -2,9 +2,9 @@ from glob import glob setup(name='gms', - version='0.6', - description='carman rich view package', - long_description='carman rich view (SDL based) package', + version='0.7.1', + description='GMyth Transcode server', + long_description='GMyth Transcode server', url='http://www.indt.org.br', scripts=['gms.py'], package_dir={'lib': 'lib', 'plugins' : 'plugins','data' : 'data' }, Modified: trunk/gmyth-upnp/configure.ac =================================================================== --- trunk/gmyth-upnp/configure.ac 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/gmyth-upnp/configure.ac 2008-02-26 14:10:22 UTC (rev 939) @@ -1,4 +1,4 @@ -AC_INIT(gmyth-upnp, 0.7.0) +AC_INIT(gmyth-upnp, 0.7.1) AC_PREREQ(2.52) AC_CONFIG_SRCDIR(configure.ac) AC_CANONICAL_BUILD Modified: trunk/packages/gmencoder-debian/changelog =================================================================== --- trunk/packages/gmencoder-debian/changelog 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/packages/gmencoder-debian/changelog 2008-02-26 14:10:22 UTC (rev 939) @@ -1,3 +1,9 @@ +gmencoder (0.7.1-indt1) gutsy; urgency=low + + * release 02/26/2008 + + -- Renato Filho <ren...@in...> Fri, 26 Feb 2008 11:01:00 -0300 + gmencoder (0.7-indt1) gutsy; urgency=low * Updated to same gmyth Release 0.7 Modified: trunk/packages/gms-debian/changelog =================================================================== --- trunk/packages/gms-debian/changelog 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/packages/gms-debian/changelog 2008-02-26 14:10:22 UTC (rev 939) @@ -1,3 +1,9 @@ +gms (0.7.1-indt1) gutsy; urgency=low + + * release 02/26/2008 + + -- Renato Filho <ren...@in...> Fri, 26 Feb 2008 11:04:00 -0300 + gms (0.7-indt1) gutsy; urgency=low * Updated to same gmyth Release 0.7 Modified: trunk/packages/gmyth-debian/changelog =================================================================== --- trunk/packages/gmyth-debian/changelog 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/packages/gmyth-debian/changelog 2008-02-26 14:10:22 UTC (rev 939) @@ -1,3 +1,9 @@ +gmyth (0.7.1-indt1) gutsy; urgency=low + + * Release 0.7.1 + + -- Renato Araujo <ren...@in...> Fri, 26 Feb 2008 10:52:08 -0300 + gmyth (0.7-indt1) gutsy; urgency=low * Release 0.7 Modified: trunk/packages/gst-debian/changelog =================================================================== --- trunk/packages/gst-debian/changelog 2008-02-25 18:40:34 UTC (rev 938) +++ trunk/packages/gst-debian/changelog 2008-02-26 14:10:22 UTC (rev 939) @@ -1,3 +1,9 @@ +gstreamer0.10-indt-plugins (0.10.14-svn20080226) gutsy; urgency=low + + * Relase 02/26/2007; + + -- Renato Araujo Oliveira Filho <ren...@in...> Mon, 26 Feb 2008 10:57:00 -0300 + gstreamer0.10-indt-plugins (0.10.14-svn20080107) gutsy; urgency=low * Relase 01/07/2007; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |