diff -Nru grilo-0.2.9/aclocal.m4 grilo-0.2.10/aclocal.m4 --- grilo-0.2.9/aclocal.m4 2014-02-18 14:15:48.000000000 +0000 +++ grilo-0.2.10/aclocal.m4 2014-03-20 09:13:39.000000000 +0000 @@ -1000,7 +1000,8 @@ END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi -fi]) +fi +]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further diff -Nru grilo-0.2.9/bindings/vala/grilo-0.2.vapi grilo-0.2.10/bindings/vala/grilo-0.2.vapi --- grilo-0.2.9/bindings/vala/grilo-0.2.vapi 2014-02-18 14:16:03.000000000 +0000 +++ grilo-0.2.10/bindings/vala/grilo-0.2.vapi 2014-03-20 09:13:39.000000000 +0000 @@ -130,6 +130,7 @@ public unowned string get_region_data (out unowned GLib.DateTime publication_date, string certificate); public unowned string get_region_data_nth (uint index, out unowned GLib.DateTime publication_date, string certificate); public unowned string get_site (); + public int get_size (); public unowned string get_source (); public float get_start_time (); public unowned string get_studio (); @@ -164,6 +165,7 @@ public void set_region (string region); public void set_region_data (string region, GLib.DateTime publication_date, string certificate); public void set_site (string site); + public void set_size (int size); public void set_source (string source); public void set_studio (string studio); public void set_thumbnail (string thumbnail); @@ -449,6 +451,7 @@ public bool register_source (Grl.Plugin plugin, Grl.Source source) throws GLib.Error; public bool unload_plugin (string plugin_id) throws GLib.Error; public bool unregister_source (Grl.Source source) throws GLib.Error; + public virtual signal void metadata_key_added (string p0); public virtual signal void source_added (Grl.Source p0); public virtual signal void source_removed (Grl.Source p0); } @@ -498,6 +501,7 @@ public unowned Grl.Plugin get_plugin (); public int get_rank (); public Grl.MediaType get_supported_media (); + public unowned string get_tags (); public virtual bool may_resolve (Grl.Media media, Grl.KeyID key_id, out GLib.List missing_keys); [NoWrapper] public virtual void media_from_uri (Grl.SourceMediaFromUriSpec mfus); @@ -536,6 +540,9 @@ public string source_id { owned get; set construct; } [NoAccessorMethod] public string source_name { owned get; set construct; } + [CCode (array_length = false, array_null_terminated = true)] + [NoAccessorMethod] + public string[] source_tags { owned get; set construct; } [NoAccessorMethod] public Grl.MediaType supported_media { get; set construct; } public virtual signal void content_changed (GLib.PtrArray p0, Grl.SourceChangeType p1, bool p2); diff -Nru grilo-0.2.9/ChangeLog grilo-0.2.10/ChangeLog --- grilo-0.2.9/ChangeLog 2014-02-18 14:17:02.000000000 +0000 +++ grilo-0.2.10/ChangeLog 2014-03-20 09:13:39.000000000 +0000 @@ -1,3 +1,367 @@ +commit d88e91c9abc801266f3a5a06b3d9689307f6d9ba +Author: Juan A. Suarez Romero +Date: Wed Mar 19 12:04:31 2014 +0000 + + Release 0.2.10 + + NEWS | 29 +++++++++++++++++++++++++++++ + configure.ac | 6 +++--- + src/data/grl-media.c | 4 ++++ + src/grl-registry.c | 2 ++ + 4 files changed, 38 insertions(+), 3 deletions(-) + +commit b88a996231a70334f08bef1153d9cf88ab54f48e +Author: Bastien Nocera +Date: Tue Mar 18 18:08:34 2014 +0100 + + pls: Set file size attribute + + https://bugzilla.gnome.org/show_bug.cgi?id=629002 + + libs/pls/grl-pls.c | 4 ++++ + 1 file changed, 4 insertions(+) + +commit 09d9b0a88286a5bf29414187ebcf636474d83c75 +Author: Juan A. Suarez Romero +Date: Mon Mar 3 00:03:14 2014 +0000 + + core: Add metadata key for size + + Add GRL_METADATA_KEY_SIZE, and proper functions, that get/set the size in media + size in bytes. + + https://bugzilla.gnome.org/show_bug.cgi?id=629002 + + doc/grilo/grilo-sections.txt | 2 ++ + src/data/grl-media.c | 28 ++++++++++++++++++++++++++++ + src/data/grl-media.h | 4 ++++ + src/grl-metadata-key.c | 13 +++++++++++++ + src/grl-metadata-key.h | 1 + + 5 files changed, 48 insertions(+) + +commit 21e6fb514884251d5dfb042b56b78e687d05d5a0 +Author: Bastien Nocera +Date: Fri Mar 14 14:01:39 2014 +0100 + + core: Add guards for public API + + Add guards for all the grl_data_* public API functions. + + https://bugzilla.gnome.org/show_bug.cgi?id=726340 + + src/data/grl-data.c | 79 +++++++++++++++++++++++++++++++++++++++++++++++++---- + 1 file changed, 73 insertions(+), 6 deletions(-) + +commit 1d806abd6310e013035eb98347df700d93b11dd6 +Author: Ryan Lortie +Date: Wed Mar 12 15:35:03 2014 -0400 + + configure: don't hardcode lib64 + + If the user wants libraries installed in a directory called lib64 then + they will specify this via the --libdir option. + + https://bugzilla.gnome.org/show_bug.cgi?id=726197 + + configure.ac | 11 ----------- + 1 file changed, 11 deletions(-) + +commit 8f82675b221a15287e12546bb2fc8cc08f67c618 +Author: Juan A. Suarez Romero +Date: Sun Mar 9 21:54:21 2014 +0000 + + core: Rename variable + + src/grl-source.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +commit 90253afd0e30bc1e33a69c6cc6c89b28461dd04c +Author: Juan A. Suarez Romero +Date: Sun Mar 9 21:52:18 2014 +0000 + + doc: Update grl-inspect man page + + Add documentation about inspecting metadata keys. + + grl-inspect.1 | 14 ++++++++++---- + 1 file changed, 10 insertions(+), 4 deletions(-) + +commit 4ce8e5056180a54c027e88b4c7ed9b11038aa029 +Author: Juan A. Suarez Romero +Date: Sun Mar 9 19:32:02 2014 +0000 + + test-ui: Show new registered metadata keys. + + tools/grilo-test-ui/main.c | 20 ++++++++++++++++++++ + 1 file changed, 20 insertions(+) + +commit f2a3ad3cadffb35833dd8ab00280aaa62b0c2110 +Author: Juan A. Suarez Romero +Date: Sun Mar 9 19:31:21 2014 +0000 + + core: Add "metadata-key-added" signal + + This signal is emitted when a source registers a new custom metadata key. + + src/grl-registry.c | 36 ++++++++++++++++++++++++++++++++---- + 1 file changed, 32 insertions(+), 4 deletions(-) + +commit 2c331dfe66e79459ca85a8fd8c888edbb9e30c45 +Author: Juan A. Suarez Romero +Date: Sun Mar 9 17:29:44 2014 +0000 + + core: Pull plugin leak + + src/grl-registry.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 1c3bd7f7d76f13c43f7d66d2836adac6f88cabd0 +Author: Juan A. Suarez Romero +Date: Sun Mar 9 16:11:33 2014 +0000 + + core: Use a hashtable to store metadatakeys + + Do not use a GParamSpecPool for it, as this class does not have a way to free + it. + + Instead, use a GHashTable. + + src/grl-metadata-key.c | 908 ++++++++++++++++++++++++------------------------ + src/grl-registry-priv.h | 8 +- + src/grl-registry.c | 106 +++--- + 3 files changed, 517 insertions(+), 505 deletions(-) + +commit 90aa982ee7a75da374424064d3ffe5552e3e3435 +Author: Juan A. Suarez Romero +Date: Sun Mar 9 00:36:49 2014 +0000 + + core: Free tags + + src/grl-source.c | 1 + + 1 file changed, 1 insertion(+) + +commit 0c3913e2a01f8949c380dc3c5eb86c73020410d8 +Author: Juan A. Suarez Romero +Date: Sun Mar 9 00:03:32 2014 +0000 + + core: configurations are stored in a list + + When freeing the list of configurations, do not unref directly because they are + inside a list. Use g_list_free_full() to do the job. + + src/grl-registry.c | 10 +++++++++- + 1 file changed, 9 insertions(+), 1 deletion(-) + +commit 806a8598c34d5b408eeebd3b699d50a03bd5c105 +Author: Juan A. Suarez Romero +Date: Thu Mar 6 17:28:08 2014 +0000 + + core: Use g_clear_pointer/object when possible + + Reduces the number of lines and makes the code more readable. + + configure.ac | 2 +- + libs/net/grl-net-mock.c | 37 ++++++++------------------- + libs/net/grl-net-wc.c | 10 +++----- + libs/pls/grl-pls.c | 32 ++++++----------------- + src/grl-caps.c | 8 ++---- + src/grl-plugin.c | 9 +++---- + src/grl-range-value.c | 9 ++----- + src/grl-registry.c | 31 ++++++----------------- + src/grl-source.c | 13 +++------- + tools/grilo-test-ui/main.c | 63 ++++++++++++---------------------------------- + 10 files changed, 58 insertions(+), 156 deletions(-) + +commit 0d380b7e10b84740a54ec108df61fc4c62b43e0f +Author: Bastien Nocera +Date: Fri Feb 28 21:22:32 2014 +0100 + + core: Add names to all the timeouts and idles + + For debugging purposes. + + https://bugzilla.gnome.org/show_bug.cgi?id=725419 + + libs/net/grl-net-wc.c | 1 + + libs/pls/grl-pls.c | 5 +- + src/grl-multiple.c | 8 ++- + src/grl-source.c | 151 ++++++++++++++++++++++++++++++-------------------- + 4 files changed, 101 insertions(+), 64 deletions(-) + +commit 5520b4e219d9a9e1dd66aefcd27b2bda2d040a8e +Author: Juan A. Suarez Romero +Date: Sun Mar 2 01:24:03 2014 +0000 + + core: Free registry resources before unreffing it + + We can't unref the registry to finalize all the sources and plugins, because + they can try to access the registry again in their finalize method. + + This commit first finalizes the sources, plugins, and other resources, and at + the end it unrefs the registry. + + https://bugzilla.gnome.org/show_bug.cgi?id=724660 + + src/grilo.c | 2 +- + src/grl-registry-priv.h | 2 + + src/grl-registry.c | 141 ++++++++++++++++++++++++------------------------ + 3 files changed, 72 insertions(+), 73 deletions(-) + +commit 30823a258d7340436bf0c6f79f77cc2947d9086c +Author: Marcus Lundblad +Date: Fri Feb 28 21:17:16 2014 +0000 + + Added Swedish translation + + po/LINGUAS | 1 + + po/sv.po | 192 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 2 files changed, 193 insertions(+) + +commit f6b7305afcf1264f90e51004ea0eda95d4413089 +Author: Juan A. Suarez Romero +Date: Fri Feb 28 00:23:35 2014 +0000 + + build: Detect Vala presence + + Build vala bindings if vala is present. + + https://bugzilla.gnome.org/show_bug.cgi?id=724648 + + configure.ac | 51 +++++++++++++++++++++++++++++++-------------------- + 1 file changed, 31 insertions(+), 20 deletions(-) + +commit 171211cfc75d241b0208308c198f0495e80f3f80 +Author: Bastien Nocera +Date: Fri Feb 21 12:25:28 2014 +0100 + + core: Add documentation for source-tags + + Explain usage and commonly used tags. + + https://bugzilla.gnome.org/show_bug.cgi?id=724019 + + src/grl-source.c | 42 ++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 42 insertions(+) + +commit 636ac50f093c11afbc68a0158fe8baaab363085b +Author: Bastien Nocera +Date: Tue Feb 25 14:37:13 2014 +0100 + + core: Fix gtk-doc for source-tags + + They were referred to as "tags" in some places, and "source-tags" + in others. + + src/grl-source.c | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) + +commit 790f3508d5f805577f4d9187ab5bf6e89262d4b5 +Author: Bastien Nocera +Date: Sun Feb 23 19:02:02 2014 +0100 + + pls: Fix build with grilo never installed + + This re-applies the fix from: + https://git.gnome.org/browse/grilo/commit/?id=3f66bb29a2d0f81479a435c1fabc80c08c4961be + + Which got broken by the wrong de-duplicating done in + 5f88b535800d1105439641795ddd2e07fd113744 + + https://bugzilla.gnome.org/show_bug.cgi?id=724871 + + libs/pls/Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit bd2a3875e3460e8a93ba30a9c7841650669a8c3f +Author: Bastien Nocera +Date: Fri Feb 21 12:30:26 2014 +0100 + + core: Fix API documentation typo + + ../../src/data/grl-data.c:389: warning: Parameter description + for grl_data_get_boolean::key is missing in source code comment block. + + https://bugzilla.gnome.org/show_bug.cgi?id=724871 + + src/data/grl-data.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +commit 5f88b535800d1105439641795ddd2e07fd113744 +Author: Bastien Nocera +Date: Fri Feb 21 12:24:59 2014 +0100 + + pls: Fix redefinition of compiler args + + https://bugzilla.gnome.org/show_bug.cgi?id=724871 + + libs/pls/Makefile.am | 1 - + 1 file changed, 1 deletion(-) + +commit 71def91bc93da36d1abf7332e899b5fd88dd1cf1 +Author: Juan A. Suarez Romero +Date: Fri Feb 21 00:35:42 2014 +0100 + + travis: Update package dependencies + + .travis.yml | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +commit 0defc30bd6e432cfb04c8956fef13d035d9c2178 +Author: Bastien Nocera +Date: Mon Feb 10 12:39:44 2014 +0100 + + test-ui: Show "source-tags" property + + https://bugzilla.gnome.org/show_bug.cgi?id=724019 + + tools/grilo-test-ui/main.c | 28 ++++++++++++++++++++++++++++ + 1 file changed, 28 insertions(+) + +commit 5fd88084afe8a7469fc65abe1eff3b0a7ac5488f +Author: Bastien Nocera +Date: Mon Feb 10 12:37:40 2014 +0100 + + core: Add "source-tags" property + + So that more information can be conveyed about the source's content + to the front-end applications, such as: + - the genre of the media (tv, cinema, radio, music, etc.) + - the countries the media is relevant to + - whether the media served is from the same machine, or from + the local network + + https://bugzilla.gnome.org/show_bug.cgi?id=724019 + + Signed-off-by: Juan A. Suarez Romero + + src/grl-source.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- + src/grl-source.h | 2 ++ + 2 files changed, 60 insertions(+), 1 deletion(-) + +commit 4f68bcff087ad0a073a86fbbeaec88a1dae2d4f3 +Author: Bastien Nocera +Date: Tue Feb 18 16:46:21 2014 +0100 + + test-ui: Fix crasher on exit + + The test UI was crashing because we left closing through the + "Close" button destroy the window, which left all the pointers + dangling. + + https://bugzilla.gnome.org/show_bug.cgi?id=724658 + + tools/grilo-test-ui/main.c | 14 ++++++++++++-- + 1 file changed, 12 insertions(+), 2 deletions(-) + +commit 4e38032dc0bdc62d868ebdb8c2d08983b5865760 +Author: Juan A. Suarez Romero +Date: Tue Feb 18 14:18:14 2014 +0000 + + Post-release version bump to 0.2.10 + + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + commit c3add1a606383bd0e583d48cf85ad5c714ff1639 Author: Juan A. Suarez Romero Date: Tue Feb 18 14:15:33 2014 +0000 diff -Nru grilo-0.2.9/configure grilo-0.2.10/configure --- grilo-0.2.9/configure 2014-02-18 14:15:49.000000000 +0000 +++ grilo-0.2.10/configure 2014-03-20 09:13:39.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for grilo 0.2.9. +# Generated by GNU Autoconf 2.69 for grilo 0.2.10. # # Report bugs to . # @@ -591,8 +591,8 @@ # Identity of this package. PACKAGE_NAME='grilo' PACKAGE_TARNAME='grilo' -PACKAGE_VERSION='0.2.9' -PACKAGE_STRING='grilo 0.2.9' +PACKAGE_VERSION='0.2.10' +PACKAGE_STRING='grilo 0.2.10' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=grilo;component=core' PACKAGE_URL='https://wiki.gnome.org/Projects/Grilo' @@ -1455,7 +1455,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures grilo 0.2.9 to adapt to many kinds of systems. +\`configure' configures grilo 0.2.10 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1525,7 +1525,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of grilo 0.2.9:";; + short | recursive ) echo "Configuration of grilo 0.2.10:";; esac cat <<\_ACEOF @@ -1555,7 +1555,7 @@ --enable-grl-pls Enable Grilo Pls library (default: auto) --enable-debug include debug symbols --enable-tests build unit tests - --enable-vala Enable Vala plugin support + --enable-vala Enable Vala plugin support (default: auto) --enable-gtk-doc use gtk-doc to build documentation [[default=no]] --enable-gtk-doc-html build documentation in html format [[default=yes]] --enable-gtk-doc-pdf build documentation in pdf format [[default=no]] @@ -1672,7 +1672,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -grilo configure 0.2.9 +grilo configure 0.2.10 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1950,7 +1950,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by grilo $as_me 0.2.9, which was +It was created by grilo $as_me 0.2.10, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2814,7 +2814,7 @@ # Define the identity of the package. PACKAGE='grilo' - VERSION='0.2.9' + VERSION='0.2.10' cat >>confdefs.h <<_ACEOF @@ -2910,6 +2910,7 @@ + ac_config_headers="$ac_config_headers config.h" @@ -11777,9 +11778,9 @@ # Libtool library version, not to confuse with API version # see http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html -GRL_LT_VERSION=6:1:5 -GRLNET_LT_VERSION=1:6:1 -GRLPLS_LT_VERSION=0:1:0 +GRL_LT_VERSION=7:0:6 +GRLNET_LT_VERSION=1:7:1 +GRLPLS_LT_VERSION=0:2:0 @@ -11985,17 +11986,6 @@ exec_prefix="${prefix}" fi -if test "${libdir}" = '${exec_prefix}/lib'; then - case `uname -m` in - x86_64|ppc64|powerpc64) - libdir='${exec_prefix}/lib64' - ;; - *) - libdir='${exec_prefix}/lib' - ;; -esac -fi - # Plugins directory GRL_PLUGINS_DIR=`eval echo ${libdir}/${GRL_NAME}` @@ -12139,12 +12129,12 @@ pkg_cv_DEPS_CFLAGS="$DEPS_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.32 \\ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.34 \\ gobject-2.0 \\ gmodule-2.0 \\ gio-2.0 \\ libxml-2.0\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.32 \ + ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.34 \ gobject-2.0 \ gmodule-2.0 \ gio-2.0 \ @@ -12152,7 +12142,7 @@ ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then - pkg_cv_DEPS_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.32 \ + pkg_cv_DEPS_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.34 \ gobject-2.0 \ gmodule-2.0 \ gio-2.0 \ @@ -12168,12 +12158,12 @@ pkg_cv_DEPS_LIBS="$DEPS_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ - { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.32 \\ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.34 \\ gobject-2.0 \\ gmodule-2.0 \\ gio-2.0 \\ libxml-2.0\""; } >&5 - ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.32 \ + ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.34 \ gobject-2.0 \ gmodule-2.0 \ gio-2.0 \ @@ -12181,7 +12171,7 @@ ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then - pkg_cv_DEPS_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.32 \ + pkg_cv_DEPS_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.34 \ gobject-2.0 \ gmodule-2.0 \ gio-2.0 \ @@ -12206,13 +12196,13 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= 2.32 \ + DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= 2.34 \ gobject-2.0 \ gmodule-2.0 \ gio-2.0 \ libxml-2.0" 2>&1` else - DEPS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= 2.32 \ + DEPS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= 2.34 \ gobject-2.0 \ gmodule-2.0 \ gio-2.0 \ @@ -12221,7 +12211,7 @@ # Put the nasty error message in config.log where it belongs echo "$DEPS_PKG_ERRORS" >&5 - as_fn_error $? "Package requirements (glib-2.0 >= 2.32 \ + as_fn_error $? "Package requirements (glib-2.0 >= 2.34 \ gobject-2.0 \ gmodule-2.0 \ gio-2.0 \ @@ -12719,19 +12709,7 @@ # VALA BINDINGS # ---------------------------------------------------------- -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether Vala plugin support is requested" >&5 -$as_echo_n "checking whether Vala plugin support is requested... " >&6; } -# Check whether --enable-vala was given. -if test "${enable_vala+set}" = set; then : - enableval=$enable_vala; enable_vala=$enableval have_vala=$enableval -else - enable_vala=autodetect have_vala=yes -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_vala" >&5 -$as_echo "$enable_vala" >&6; } -if test "x$enable_vala" != "xno"; then - # Extract the first word of "valac", so it can be a program name with args. +# Extract the first word of "valac", so it can be a program name with args. set dummy valac; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } @@ -12771,11 +12749,7 @@ fi - if test "x$VALAC" = "x"; then - as_fn_error $? "No Vala compiler found." "$LINENO" 5 - fi - - # Extract the first word of "vala-gen-introspect", so it can be a program name with args. +# Extract the first word of "vala-gen-introspect", so it can be a program name with args. set dummy vala-gen-introspect; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } @@ -12815,11 +12789,7 @@ fi - if test "x$VALA_GEN_INTROSPECT" = "x"; then - as_fn_error $? "Cannot find \"vala-gen-introspect\" in your PATH" "$LINENO" 5 - fi - - # Extract the first word of "vapigen", so it can be a program name with args. +# Extract the first word of "vapigen", so it can be a program name with args. set dummy vapigen; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } @@ -12859,11 +12829,39 @@ fi - if test "x$VAPIGEN" = "x"; then - as_fn_error $? "Cannot fine \"vapigen\" in your PATH" "$LINENO" 5 + +# Check whether --enable-vala was given. +if test "${enable_vala+set}" = set; then : + enableval=$enable_vala; + case "$enableval" in + yes) + if test "x$VALAC" = "x"; then + as_fn_error $? "valac not found, install it or use --disable-vala" "$LINENO" 5 + fi + if test "x$VALA_GEN_INTROSPECT" = "x"; then + as_fn_error $? "vala-gen-introspect not found, install it or use --disable-vala" "$LINENO" 5 + fi + if test "x$VAPIGEN" = "x"; then + as_fn_error $? "vapigen not found, install it or use --disable-vala" "$LINENO" 5 + fi + ;; + no) + enable_vala=no + ;; + esac + +else + + if test "x$VALAC" != "x" -a "x$VALA_GEN_INTROSPECT" != "x" -a "x$VAPIGEN" != "x"; then + enable_vala=yes + else + enable_vala=no fi + fi - if test "x$enable_vala" != "xno"; then + + + if test "x$enable_vala" = "xyes"; then HAVE_VALA_TRUE= HAVE_VALA_FALSE='#' else @@ -14554,7 +14552,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by grilo $as_me 0.2.9, which was +This file was extended by grilo $as_me 0.2.10, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -14621,7 +14619,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -grilo config.status 0.2.9 +grilo config.status 0.2.10 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru grilo-0.2.9/configure.ac grilo-0.2.10/configure.ac --- grilo-0.2.9/configure.ac 2014-02-18 14:11:02.000000000 +0000 +++ grilo-0.2.10/configure.ac 2014-03-20 09:13:39.000000000 +0000 @@ -9,7 +9,7 @@ m4_define([prj_gir_name], [Grilo]) m4_define([grl_major_version], [0]) m4_define([grl_minor_version], [2]) -m4_define([grl_micro_version], [9]) +m4_define([grl_micro_version], [10]) m4_define([prj_version], grl_major_version.grl_minor_version.grl_micro_version) AC_INIT([prj_name], @@ -57,9 +57,9 @@ # Libtool library version, not to confuse with API version # see http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html -GRL_LT_VERSION=6:1:5 -GRLNET_LT_VERSION=1:6:1 -GRLPLS_LT_VERSION=0:1:0 +GRL_LT_VERSION=7:0:6 +GRLNET_LT_VERSION=1:7:1 +GRLPLS_LT_VERSION=0:2:0 AC_SUBST([GRL_LT_VERSION]) AC_SUBST([GRLNET_LT_VERSION]) @@ -102,17 +102,6 @@ exec_prefix="${prefix}" fi -if test "${libdir}" = '${exec_prefix}/lib'; then - case `uname -m` in - x86_64|ppc64|powerpc64) - libdir='${exec_prefix}/lib64' - ;; - *) - libdir='${exec_prefix}/lib' - ;; -esac -fi - # Plugins directory GRL_PLUGINS_DIR=`eval echo ${libdir}/${GRL_NAME}` @@ -123,7 +112,7 @@ # DEPENDENCIES # ---------------------------------------------------------- -PKG_CHECK_MODULES(DEPS, glib-2.0 >= 2.32 \ +PKG_CHECK_MODULES(DEPS, glib-2.0 >= 2.34 \ gobject-2.0 \ gmodule-2.0 \ gio-2.0 \ @@ -252,29 +241,40 @@ # VALA BINDINGS # ---------------------------------------------------------- -AC_MSG_CHECKING([whether Vala plugin support is requested]) -AC_ARG_ENABLE([vala], - AS_HELP_STRING([--enable-vala],[Enable Vala plugin support]), - [enable_vala=$enableval have_vala=$enableval], - [enable_vala=autodetect have_vala=yes]) -AC_MSG_RESULT([$enable_vala]) -if test "x$enable_vala" != "xno"; then - AC_PATH_PROG([VALAC], [valac]) - if test "x$VALAC" = "x"; then - AC_MSG_ERROR([No Vala compiler found.]) - fi +AC_PATH_PROG([VALAC], [valac]) +AC_PATH_PROG([VALA_GEN_INTROSPECT], [vala-gen-introspect]) +AC_PATH_PROG([VAPIGEN], [vapigen]) - AC_PATH_PROG([VALA_GEN_INTROSPECT], [vala-gen-introspect]) - if test "x$VALA_GEN_INTROSPECT" = "x"; then - AC_MSG_ERROR([Cannot find "vala-gen-introspect" in your PATH]) +AC_ARG_ENABLE([vala], + AS_HELP_STRING([--enable-vala], + [Enable Vala plugin support (default: auto)]), + [ + case "$enableval" in + yes) + if test "x$VALAC" = "x"; then + AC_MSG_ERROR([valac not found, install it or use --disable-vala]) + fi + if test "x$VALA_GEN_INTROSPECT" = "x"; then + AC_MSG_ERROR([vala-gen-introspect not found, install it or use --disable-vala]) + fi + if test "x$VAPIGEN" = "x"; then + AC_MSG_ERROR([vapigen not found, install it or use --disable-vala]) + fi + ;; + no) + enable_vala=no + ;; + esac + ], + [ + if test "x$VALAC" != "x" -a "x$VALA_GEN_INTROSPECT" != "x" -a "x$VAPIGEN" != "x"; then + enable_vala=yes + else + enable_vala=no fi + ]) - AC_PATH_PROG([VAPIGEN], [vapigen]) - if test "x$VAPIGEN" = "x"; then - AC_MSG_ERROR([Cannot fine "vapigen" in your PATH]) - fi -fi -AM_CONDITIONAL(HAVE_VALA, test "x$enable_vala" != "xno") +AM_CONDITIONAL([HAVE_VALA], [test "x$enable_vala" = "xyes"]) # ---------------------------------------------------------- # GTK-DOC diff -Nru grilo-0.2.9/debian/changelog grilo-0.2.10/debian/changelog --- grilo-0.2.9/debian/changelog 2014-02-19 21:40:44.000000000 +0000 +++ grilo-0.2.10/debian/changelog 2014-03-20 10:14:07.000000000 +0000 @@ -1,307 +1,193 @@ -grilo (0.2.9-1~saucy1) saucy; urgency=low +grilo (0.2.10-1~saucy1) saucy; urgency=medium - * New release + * Backport from Debian Experimental - -- Juan A. Suarez Romero Wed, 19 Feb 2014 22:32:03 +0100 + -- Juan A. Suarez Romero Thu, 20 Mar 2014 11:00:26 +0100 -grilo (0.2.8-2) unstable; urgency=low +grilo (0.2.10-1) unstable; urgency=medium - * Synchronize with Debian + * New upstream release. + * debian/control: update build dependency on libglib2.0-dev to 2.34. + * debian/libgrilo-0.2-1.symbols: update. - -- Juan A. Suarez Romero Mon, 17 Feb 2014 23:12:08 +0100 + -- Alberto Garcia Wed, 19 Mar 2014 16:12:33 +0200 -grilo (0.2.8-1) unstable; urgency=low +grilo (0.2.9-1) unstable; urgency=medium - * New release + * New upstream release. + * Drop drop-libvala.patch, this is already integrated in this release. + * debian/rules: disable Automake's silent rules. - -- Juan A. Suarez Romero Mon, 10 Feb 2014 23:54:29 +0100 + -- Alberto Garcia Tue, 18 Feb 2014 23:27:55 +0200 -grilo (0.2.7-1) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Tue, 17 Sep 2013 21:29:30 +0200 - -grilo (0.2.6-1) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Thu, 16 May 2013 20:52:11 +0200 - -grilo (0.2.5-1) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Tue, 19 Mar 2013 13:29:26 +0100 - -grilo (0.2.4-1) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Fri, 30 Nov 2012 18:23:50 +0100 - -grilo (0.2.3-1) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Thu, 08 Nov 2012 17:24:03 +0100 - -grilo (0.2.2-3) unstable; urgency=low - - * Add missing copyright file - * Install into multiarch libdir - * Add package for debugging symbols - - -- Juan A. Suarez Romero Fri, 05 Oct 2012 13:34:45 +0000 - -grilo (0.2.2-2) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Fri, 05 Oct 2012 00:45:37 +0200 - -grilo (0.2.1-1) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Wed, 03 Oct 2012 13:27:30 +0200 +grilo (0.2.8-1) unstable; urgency=medium -grilo (0.2.0-2) unstable; urgency=low + * New upstream release (Closes: #739025, #739028). + * debian/control: + - Update Standards-Version to 3.9.5 (no changes). + - Bump build dependency on libglib2.0-dev to 2.32. + - Add build dependency on libtotem-plparser-dev. + - Build depend on the generic valac package, there's no need for any + specific version of Vala. + * Don't require libvala, it's not used by Grilo at all. + - debian/patches/drop-libvala.patch: remove check in configure.ac + - debian/control: remove build dependency. + * debian/libgrilo-0.2-1.symbols: update. + * debian/copyright: update copyright years. - * Debianizing system synced from Debian upstream. + -- Alberto Garcia Sat, 15 Feb 2014 18:06:20 +0200 - -- Andrés Gómez García Tue, 04 Sep 2012 14:39:22 +0300 - -grilo-0.2 (0.2.0-1) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Mon, 13 Aug 2012 13:28:31 +0200 - -grilo-0.1 (0.1.20-1) unstable; urgency=low - - * New release - - -- Juan A. Suarez Romero Fri, 10 Aug 2012 18:00:09 +0200 - -grilo-0.1 (0.1.19-1) unstable; urgency=low - - * Fixes in the Test UI - * Improvements in Grilo Net library - * Added support for Vala 0.16 and 0.18 - * Improvements in the build system - - * Several fixes, including: BGO#662748 - tracker plugin: support - multiple resources in a larger file, BGO#665938 - Do not dist - gir_DATA, BGO#672923 - Make it possible to override the user-agent - in GrlNetWc - - -- Juan A. Suarez Romero Thu, 24 May 2012 10:21:36 +0200 - -grilo-0.1 (0.1.18-1) unstable; urgency=low - - * Added support for Windows building - * Several fixes, including BGO#662762 - critical when HTTP request - fails, BGO#662763 - Bad unref in grl-net - - -- Juan A. Suarez Romero Fri, 09 Dec 2011 14:01:09 +0100 - -grilo-0.1 (0.1.17-1) unstable; urgency=low - - * Minor improvements in documentation - * Well-manage end of search/browse in splitted sources - * Minor fixes in build system - * Install XML files in the same place as libraries - * Restrict loading of a subset of plugins - * Added support for Vala 0.14 - * Fixed some bugs, including, BGO#657549 - add - GRL_METADATA_KEY_TRACK_NUMBER, BGO#657920 - Add Grilo - documentation - - -- Juan A. Suarez Romero Mon, 05 Sep 2011 11:31:50 +0000 - -grilo-0.1 (0.1.16-1) unstable; urgency=low - - * Several fixes - * Minor improvements in build system - * Make Test UI compliant with Gtk+ 3.0 - * Test UI no more long needs GConf - * Lots of updates in documentation - * Added manpage for grl-inspect tool - * Added new API to handle operation cancellation - - -- Juan A. Suarez Romero Mon, 01 Aug 2011 09:10:07 +0200 - -grilo-0.1 (0.1.15-1) unstable; urgency=low - - * Several fixes - * Updated documentation - * Updated grl-inspect tool - - -- Juan A. Suarez Romero Wed, 20 Apr 2011 16:05:37 +0200 - -grilo-0.1 (0.1.14-1) unstable; urgency=low +grilo (0.2.7-1) unstable; urgency=low - * Several fixes, including: BGO#628898 - Grilo could do with a function to - load a plugin by ID, BGO#644383 - [feature-request] Metadata request are not - cancellable - * Re-worked "content-changed" signal: several elements can be sent in just one - signal - * Operations in GrlMetadataSource are now cancellable too + * New upstream release. + * Update my e-mail address in debian/*. + * Remove libsoup.patch, it's no longer relevant for this release. + * debian/libgrilo-0.2-1.symbols: update. - -- Juan A. Suarez Romero Wed, 13 Apr 2011 15:49:34 +0000 + -- Alberto Garcia Wed, 18 Sep 2013 01:18:10 +0300 -grilo-0.1 (0.1.13-1) unstable; urgency=low +grilo (0.2.6-2) unstable; urgency=low - * Do not store keys without values in GrlData - * Deprecated grl_data_key_is_known() - * Deprecated GrlData "overwrite" property - * Renamed grl_data_get_single_related_keys() - * Some fixes, including: BGO#645525 - CPU load and grilo requests + * libsoup.patch: fix FTBFS with libsoup < 2.42. - -- Juan A. Suarez Romero Wed, 06 Apr 2011 17:51:20 +0200 + -- Alberto Garcia Wed, 29 May 2013 16:53:43 +0200 -grilo-0.1 (0.1.12-1) unstable; urgency=low +grilo (0.2.6-1) unstable; urgency=low - * Several fixes and improvements, including fixes for: BGO#645542 - - grl_metadata_source_set_metadata() broken - * Added support for caching in GrlNet - * Added new metadata keys suited for camera pictures - * Improved GObject Introspection support + * New upstream release. + * Upload to unstable. + * debian/libgrilo-0.2-1.symbols: add symbols file. + - debian/rules: remove the dh_makeshlibs override. + * debian/control: + - Set build dependency on Vala to 0.20 (Closes: #709692). + - Build depend on libglib >= 2.29.10. + - Downgrade grilo plugins from recommended to suggested. Just because + a program supports Grilo does not mean that it has a strong dependency + on its plugins. - -- Juan A. Suarez Romero Wed, 30 Mar 2011 20:28:57 +0200 + -- Alberto Garcia Wed, 29 May 2013 02:28:34 +0200 -grilo-0.1 (0.1.11-1) unstable; urgency=low +grilo (0.2.5-2) experimental; urgency=low - * Fixed a segmentation fault - * Added new keys + [ Jonny Lamb ] + * Add libgrilo-0.2-1-dbg debug package (Closes: #704511). - -- Juan A. Suarez Romero Thu, 17 Mar 2011 22:53:00 +0100 + -- Alberto Garcia Tue, 02 Apr 2013 17:30:41 +0300 -grilo-0.1 (0.1.10-1) unstable; urgency=low +grilo (0.2.5-1) experimental; urgency=low - * Several fixes - * Deprecated grl_metadata_source_key_depends() in benefit of grl_metadata_source_may_resolve() - * Rewritten full resolution mode to handle correctly metadata sources - * Added support for multi-valued keys. + * New upstream release. + * debian/control: update Standards-Version to 3.9.4 (no changes). + * debian/copyright: update copyright years. + * Build with dh-autoreconf to ensure that the autotools helper files are + being regenerated (this fixes lintian outdated-autotools-helper-file). + - debian/rules: pass '--with autoreconf' to dh. + - debian/control: add build dependency on dh-autoreconf. - -- Juan A. Suarez Romero Fri, 04 Mar 2011 16:49:00 +0100 + -- Alberto Garcia Wed, 20 Mar 2013 11:04:26 +0200 -grilo-0.1 (0.1.9-1) unstable; urgency=low +grilo (0.2.4-1) experimental; urgency=low - * Several fixes - * Added support for content-changed notifications - * Added support for NULL-text search (aka search all) - * Added support for cancelled operations notification - * Added support for binary data in GrlConfig and GrlData - * Added new configuration key: api-key-blob - * Added new metadata key: thumbnail-binary + * New upstream release. - -- Juan A. Suarez Romero Thu, 10 Feb 2011 18:41:15 +0100 + -- Alberto Garcia Sat, 01 Dec 2012 13:22:37 +0200 -grilo-0.1 (0.1.8-1) unstable; urgency=low +grilo (0.2.3-1) experimental; urgency=low - * Several fixes - * Improved documentation - * Reworked GrlConfig - * Added new types and functions in GrlConfig - * Added padded for public structures - * Added sync version of grl_media_source_get_media_from_uri() + * New upstream version. + * debian/rules: new API, bump package version in dh_makeshlibs. + * debian/rules: configure with --disable-debug, otherwise it's enabled + by default. + * Drop all lintian-overrides files, there are no longer hardening + warnings. - -- Juan A. Suarez Romero Thu, 27 Jan 2011 20:07:56 +0100 + -- Alberto Garcia Mon, 12 Nov 2012 18:12:56 +0200 -grilo-0.1 (0.1.7-2) unstable; urgency=low +grilo (0.2.2-1) experimental; urgency=low - * Fix configure.ac + * New upstream release, first in the 0.2 series in Debian. + * debian/*: rename everything from *grilo-0.1* to *grilo-0.2*. + * debian/control: make libgrilo-0.2-doc conflict with libgrilo-0.1-doc, + they can't be installed at the same time. + * debian/control: remove the DM-Upload-Allowed field, it's now obsolete. - -- Juan A. Suarez Romero Sat, 22 Jan 2011 00:36:35 +0100 + -- Alberto Garcia Fri, 12 Oct 2012 16:42:22 +0300 -grilo-0.1 (0.1.7-1) unstable; urgency=low +grilo (0.1.20-1) experimental; urgency=low - * Several fixes, including fixes for bugs #627864, #628506, #629369, - #630493, #635394. - * Added Grilo Net Web Client (GrlNetWc) - * Implemented grl_multiple_get_media_from_site(): build a GrlMedia - from given a site url - * Implemented grl_plugin_registry_add_config_from_file(): load - plugin configuration from a file - * Added a GError parameter to GrlPluginRegistry functions that can fail - * Added new GrlCoreError - * Log system revamp - * Improved documentation - * Improved gobject introspection annotations - * Improved Vala bindings - * Using functions instead of definitions in grl-media-plugin - * Updated tests infrastructure - * Added new python tests using gobject introspection + * New upstream release. - -- Juan A. Suarez Romero Fri, 21 Jan 2011 22:03:07 +0100 + -- Alberto Garcia Fri, 17 Aug 2012 10:09:18 +0300 -grilo-0.1 (0.1.6-1) unstable; urgency=low +grilo (0.1.19-1) unstable; urgency=low - * Several fixes, including fixes for GB#620143, GB#62047 and GB#627207 - * Use SILENCE mode when building - * Added (un)serialization API to GrlMedia - * New metadata key system based on GParamSpec - * Added API to get all available keys - * Added API to initialize Grilo - * Added API to search in several plugins at the same time - * Added API with utility functions - * Added command-line options - * Use XML to define plugins - * Added new keys: external-url, external-player, studio, certificate and license - * grl_media_source_metadata() is cancelable - * Handle flickr authorization in test-ui - * Added synchronous functions for the asynchronous partners - * Added grl-inspect utility - * Renamed grl_plugin_registry_get_instance() to grl_plugin_registry_get_default() - * Improved Vala bindings - * Improved GObject introspection support + * New upstream release. + * Build using Vala 0.16: + - debian/control: update build dependencies. + - debian/rules: install Vala API files in /usr/share/vala/vapi. + - debian/libgrilo-0.1-dev.install: update path of Vala API files. + * Create a new libgrilo-0.1-bin package and move grl-inspect-0.1 there. + - debian/rules: rename manpage to match the binary name. + * Drop libgrilo-0.1-0.shlibs and use dh_makeshlibs to generate a shlibs + file. + * Multi-arch support: + - debian/compat: set compatibility level to 9. + - debian/control: build depend on debhelper >= 9. + - debian/control: Add Multi-Arch and Pre-Depends fields to + libgrilo-0.1-0. + - debian/libgrilo-0.1-{0,dev}.install: replace usr/lib/ with + usr/lib/*/. + - bump shlibs to 0.1.19 and break grilo-plugins-0.1 << 0.1.19. + * libgrilo-0.1-{0,bin}.lintian-overrides: ignore the + hardening-no-stackprotector warning, Grilo does not use character + arrays on the stack. + * debian/copyright: update copyright years and add section for Debian + files. - -- Juan A. Suarez Romero Thu, 26 Aug 2010 18:58:30 +0200 + -- Alberto Garcia Thu, 24 May 2012 18:05:32 +0200 -grilo-0.1 (0.1.5-1) unstable; urgency=low +grilo (0.1.18-2) unstable; urgency=low - * General fixes - * Added initial support for testing - * Added new documentation: ovewview, quick start, examples, ... - * Updated Vala bindings - * Changed GrlConfig: now keys are strings instead of GrlKeyID - * Improved build system - * Added Vimeo plugin in Test UI + * debian/control: build using Vala 0.14 (Closes: #663307). + * debian/libgrilo-0.1-dev.install: update path of Vala API files. + * debian/control: update Standards-Version to 3.9.3. + * debian/control: change section of gir1.2-grilo-0.1 to 'introspection'. + * debian/copyright: update debian copyright format URL. - -- Juan A. Suarez Romero Fri, 07 May 2010 15:44:11 +0200 + -- Alberto Garcia Sat, 10 Mar 2012 16:19:10 +0200 -grilo-0.1 (0.1.4-1) unstable; urgency=low +grilo (0.1.18-1) unstable; urgency=low - * Improved code and documentation - * New API to configure plugins and sources - * New API to modify content in sources - * New keys: play-count, last-played, last-position - * Introspection support in build system - * Refactored content classes - * Renamed sources_by_capabilities() to sources_by_operations() + * New upstream release. + * debian/watch: scan for .xz files, upstream no longer uses bz2. + * debian/copyright: rewrite using the machine-readable format. - -- Juan A. Suarez Romero Fri, 12 Mar 2010 17:31:51 +0100 + -- Alberto Garcia Sat, 10 Dec 2011 15:14:51 +0200 -grilo-0.1 (0.1.3-1) unstable; urgency=low +grilo (0.1.17-1) unstable; urgency=low - * Added ranks to plugins - * Added functions to search sources by capabilities - * Gtk-doc for GrlMediaPlugin and GrlMetadataSource + * New upstream release. + * debian/libgrilo-0.1-0.shlibs: new API, bump shlibs to 0.1.17. + * debian/libgrilo-0.1-doc.doc-base.grilo-libs: the grilo-libs manual + doesn't exist anymore since it has been merged into the main one. + * debian/libgrilo-0.1-doc.links: ditto. + * debian/control: this release breaks grilo-plugins-0.1 << 0.1.17 since + now plugin XML files are located in a different place. - -- Juan A. Suarez Romero Mon, 01 Mar 2010 11:13:35 +0100 + -- Alberto Garcia Mon, 05 Sep 2011 23:25:51 +0300 -grilo-0.1 (0.1.2-1) unstable; urgency=low +grilo (0.1.16-1) unstable; urgency=low - * Improved Vala bindings - * Fixed some bugs - * Started initial support for gtk-doc + * New upstream release. + * debian/{grl-inspect.1,libgrilo-0.1-0.manpages,libgrilo-0.1-0.install}: + use manpage shipped by upstream. + * debian/libgrilo-0.1-0.shlibs: new API, bump shlibs to 0.1.16. + * debian/copyright: Author(s) => Authors. - -- Juan A. Suarez Romero Fri, 19 Feb 2010 21:12:23 +0100 + -- Alberto Garcia Sat, 02 Jul 2011 13:48:46 +0300 -grilo-0.1 (0.1.1-1) unstable; urgency=low +grilo (0.1.15-1) unstable; urgency=low - * Initial release. + * Initial release (Closes: #573737, #629396). - -- Juan A. Suarez Romero Tue, 09 Feb 2010 21:11:05 +0100 + -- Alberto Garcia Thu, 16 Jun 2011 12:26:33 +0300 diff -Nru grilo-0.2.9/debian/control grilo-0.2.10/debian/control --- grilo-0.2.9/debian/control 2014-02-19 21:31:38.000000000 +0000 +++ grilo-0.2.10/debian/control 2014-03-20 10:06:43.000000000 +0000 @@ -1,22 +1,21 @@ Source: grilo Section: libs Priority: optional -Maintainer: Juan A. Suarez Romero +Maintainer: Alberto Garcia Build-Depends: debhelper (>= 9), dh-autoreconf, + libglib2.0-dev (>= 2.34), + libxml2-dev, + libsoup2.4-dev, + libtotem-plparser-dev, gobject-introspection, - gtk-doc-tools, libgirepository1.0-dev, - libglib2.0-dev (>= 2.32), - liboauth-dev, - libsoup2.4-dev (>= 2.33.4), - libtotem-plparser-dev (>= 3.4.1), - libxml2-dev, - valac (>= 0.7.2) + valac, + gtk-doc-tools Standards-Version: 3.9.5 Homepage: http://live.gnome.org/Grilo -Package: libgrilo-0.2-0 +Package: libgrilo-0.2-1 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} @@ -42,7 +41,7 @@ Package: libgrilo-0.2-dev Section: libdevel Architecture: any -Depends: libgrilo-0.2-0 (= ${binary:Version}), +Depends: libgrilo-0.2-1 (= ${binary:Version}), gir1.2-grilo-0.2 (= ${binary:Version}), libxml2-dev, libglib2.0-dev, @@ -91,6 +90,7 @@ Architecture: all Depends: ${misc:Depends} Suggests: devhelp +Conflicts: libgrilo-0.1-doc Description: Framework for discovering and browsing media - Documentation Grilo is a framework focused on making media discovery and browsing easy for application developers. @@ -107,13 +107,13 @@ . This package contains the documentation. -Package: libgrilo-0.2-0-dbg +Package: libgrilo-0.2-1-dbg Section: debug Priority: extra Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} -Depends: libgrilo-0.2-0 (= ${binary:Version}), +Depends: libgrilo-0.2-1 (= ${binary:Version}), ${misc:Depends} Suggests: grilo-plugins-0.2-dbg Description: Framework for discovering and browsing media - debugging symbols diff -Nru grilo-0.2.9/debian/copyright grilo-0.2.10/debian/copyright --- grilo-0.2.9/debian/copyright 2014-02-10 23:41:11.000000000 +0000 +++ grilo-0.2.10/debian/copyright 2014-03-20 10:06:43.000000000 +0000 @@ -3,48 +3,11 @@ Source: http://ftp.gnome.org/pub/GNOME/sources/grilo/ Files: * -Copyright: 2010-2012 Igalia, S.L. -License: LGPL-2.1+ - -Files: - libs/net/grl-net-soup-stable.c - libs/net/grl-net-soup-unstable.c - libs/net/grl-net-wc.c - libs/net/grl-net-wc.h -Copyright: - 2010-2012 Igalia, S.L. - 2012 Canonical Ltd -License: LGPL-2.1+ - -Files: - src/data/grl-config.c - src/data/grl-config.h - src/grl-registry.c - src/grl-sync.c - tools/grilo-test-ui/main.c -Copyright: - 2011 Intel Corporation - 2010-2012 Igalia, S.L. -License: LGPL-2.1+ - -Files: src/grl-log-priv.h -Copyright: 2010 Intel Corporation -License: LGPL-2.1+ - -Files: src/grl-log.h -Copyright: 1999,2000 Erik Walthinsen -License: LGPL-2.1+ - -Files: tests/registry.c -Copyright: 2010 Stefan Kost -License: LGPL-2.1+ - -Files: tests/metadata_source.c -Copyright: 2010 Víctor M. Jáquez Leal +Copyright: 2010-2014 Igalia, S.L. License: LGPL-2.1+ Files: debian/* -Copyright: 2011-2012 Alberto Garcia +Copyright: 2011-2014 Alberto Garcia License: LGPL-2.1+ License: LGPL-2.1+ diff -Nru grilo-0.2.9/debian/libgrilo-0.2-0.docs grilo-0.2.10/debian/libgrilo-0.2-0.docs --- grilo-0.2.9/debian/libgrilo-0.2-0.docs 2014-02-10 23:41:11.000000000 +0000 +++ grilo-0.2.10/debian/libgrilo-0.2-0.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -AUTHORS -NEWS -README -TODO diff -Nru grilo-0.2.9/debian/libgrilo-0.2-0.install grilo-0.2.10/debian/libgrilo-0.2-0.install --- grilo-0.2.9/debian/libgrilo-0.2-0.install 2014-02-17 21:46:57.000000000 +0000 +++ grilo-0.2.10/debian/libgrilo-0.2-0.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -usr/lib/*/lib*.so.* diff -Nru grilo-0.2.9/debian/libgrilo-0.2-0.symbols grilo-0.2.10/debian/libgrilo-0.2-0.symbols --- grilo-0.2.9/debian/libgrilo-0.2-0.symbols 2014-02-17 22:21:39.000000000 +0000 +++ grilo-0.2.10/debian/libgrilo-0.2-0.symbols 1970-01-01 00:00:00.000000000 +0000 @@ -1,446 +0,0 @@ -libgrilo-0.2.so.1 libgrilo-0.2-0 #MINVER# - GRL_LOG_DOMAIN_DEFAULT@Base 0.2.2 - (optional)_grl_log_free_core_domains@Base 0.2.2 - (optional)_grl_log_init_core_domains@Base 0.2.2 - (optional)config_log_domain@Base 0.2.2 - (optional)data_log_domain@Base 0.2.2 - grl_caps_get_key_filter@Base 0.2.2 - grl_caps_get_key_range_filter@Base 0.2.2 - grl_caps_get_type@Base 0.2.2 - grl_caps_get_type_filter@Base 0.2.2 - grl_caps_is_key_filter@Base 0.2.2 - grl_caps_is_key_range_filter@Base 0.2.2 - grl_caps_new@Base 0.2.2 - grl_caps_set_key_filter@Base 0.2.2 - grl_caps_set_key_range_filter@Base 0.2.2 - grl_caps_set_type_filter@Base 0.2.2 - grl_caps_test_option@Base 0.2.2 - grl_config_get_api_key@Base 0.2.2 - grl_config_get_api_key_blob@Base 0.2.2 - grl_config_get_api_secret@Base 0.2.2 - grl_config_get_api_token@Base 0.2.2 - grl_config_get_api_token_secret@Base 0.2.6 - grl_config_get_binary@Base 0.2.2 - grl_config_get_boolean@Base 0.2.2 - grl_config_get_float@Base 0.2.2 - grl_config_get_int@Base 0.2.2 - grl_config_get_password@Base 0.2.2 - grl_config_get_plugin@Base 0.2.2 - grl_config_get_source@Base 0.2.2 - grl_config_get_string@Base 0.2.2 - grl_config_get_type@Base 0.2.2 - grl_config_get_username@Base 0.2.2 - grl_config_has_param@Base 0.2.2 - grl_config_new@Base 0.2.2 - grl_config_set@Base 0.2.2 - grl_config_set_api_key@Base 0.2.2 - grl_config_set_api_key_blob@Base 0.2.2 - grl_config_set_api_secret@Base 0.2.2 - grl_config_set_api_token@Base 0.2.2 - grl_config_set_api_token_secret@Base 0.2.6 - grl_config_set_binary@Base 0.2.2 - grl_config_set_boolean@Base 0.2.2 - grl_config_set_float@Base 0.2.2 - grl_config_set_int@Base 0.2.2 - grl_config_set_password@Base 0.2.2 - grl_config_set_plugin@Base 0.2.2 - grl_config_set_source@Base 0.2.2 - grl_config_set_string@Base 0.2.2 - grl_config_set_username@Base 0.2.2 - grl_data_add_binary@Base 0.2.2 - grl_data_add_boxed@Base 0.2.2 - grl_data_add_float@Base 0.2.2 - grl_data_add_int@Base 0.2.2 - grl_data_add_related_keys@Base 0.2.2 - grl_data_add_string@Base 0.2.2 - grl_data_dup@Base 0.2.2 - grl_data_get@Base 0.2.2 - grl_data_get_binary@Base 0.2.2 - grl_data_get_boolean@Base 0.2.3 - grl_data_get_boxed@Base 0.2.2 - grl_data_get_float@Base 0.2.2 - grl_data_get_int@Base 0.2.2 - grl_data_get_keys@Base 0.2.2 - grl_data_get_related_keys@Base 0.2.2 - grl_data_get_single_values_for_key@Base 0.2.2 - grl_data_get_single_values_for_key_string@Base 0.2.2 - grl_data_get_string@Base 0.2.2 - grl_data_get_type@Base 0.2.2 - grl_data_has_key@Base 0.2.2 - grl_data_length@Base 0.2.2 - grl_data_new@Base 0.2.2 - grl_data_remove@Base 0.2.2 - grl_data_remove_nth@Base 0.2.2 - grl_data_set@Base 0.2.2 - grl_data_set_binary@Base 0.2.2 - grl_data_set_boolean@Base 0.2.3 - grl_data_set_boxed@Base 0.2.2 - grl_data_set_float@Base 0.2.2 - grl_data_set_int@Base 0.2.2 - grl_data_set_related_keys@Base 0.2.2 - grl_data_set_string@Base 0.2.2 - grl_date_time_from_iso8601@Base 0.2.2 - grl_deinit@Base 0.2.8 - grl_g_value_dup@Base 0.2.2 - grl_g_value_free@Base 0.2.2 - grl_g_value_hashtable_new@Base 0.2.2 - grl_g_value_hashtable_new_direct@Base 0.2.2 - grl_g_value_new@Base 0.2.2 - grl_init@Base 0.2.2 - grl_init_get_option_group@Base 0.2.2 - grl_list_from_va@Base 0.2.2 - grl_log@Base 0.2.2 - grl_log_configure@Base 0.2.2 - grl_log_domain_free@Base 0.2.2 - grl_log_domain_new@Base 0.2.2 - grl_marshal_VOID__BOXED_ENUM_BOOLEAN@Base 0.2.2 - grl_media_add_author@Base 0.2.2 - grl_media_add_external_player@Base 0.2.2 - grl_media_add_external_url@Base 0.2.2 - grl_media_add_keyword@Base 0.2.3 - grl_media_add_region_data@Base 0.2.3 - grl_media_add_thumbnail@Base 0.2.2 - grl_media_add_thumbnail_binary@Base 0.2.2 - grl_media_add_url_data@Base 0.2.2 - grl_media_audio_add_artist@Base 0.2.2 - grl_media_audio_add_genre@Base 0.2.2 - grl_media_audio_add_lyrics@Base 0.2.2 - grl_media_audio_add_url_data@Base 0.2.2 - grl_media_audio_get_album@Base 0.2.2 - grl_media_audio_get_artist@Base 0.2.2 - grl_media_audio_get_artist_nth@Base 0.2.2 - grl_media_audio_get_bitrate@Base 0.2.2 - grl_media_audio_get_genre@Base 0.2.2 - grl_media_audio_get_genre_nth@Base 0.2.2 - grl_media_audio_get_lyrics@Base 0.2.2 - grl_media_audio_get_lyrics_nth@Base 0.2.2 - grl_media_audio_get_track_number@Base 0.2.2 - grl_media_audio_get_type@Base 0.2.2 - grl_media_audio_get_url_data@Base 0.2.2 - grl_media_audio_get_url_data_nth@Base 0.2.2 - grl_media_audio_new@Base 0.2.2 - grl_media_audio_set_album@Base 0.2.2 - grl_media_audio_set_artist@Base 0.2.2 - grl_media_audio_set_bitrate@Base 0.2.2 - grl_media_audio_set_genre@Base 0.2.2 - grl_media_audio_set_lyrics@Base 0.2.2 - grl_media_audio_set_track_number@Base 0.2.2 - grl_media_audio_set_url_data@Base 0.2.2 - grl_media_box_get_childcount@Base 0.2.2 - grl_media_box_get_type@Base 0.2.2 - grl_media_box_new@Base 0.2.2 - grl_media_box_set_childcount@Base 0.2.2 - grl_media_get_author@Base 0.2.2 - grl_media_get_author_nth@Base 0.2.2 - grl_media_get_certificate@Base 0.2.2 - grl_media_get_creation_date@Base 0.2.2 - grl_media_get_description@Base 0.2.2 - grl_media_get_duration@Base 0.2.2 - grl_media_get_external_url@Base 0.2.2 - grl_media_get_external_url_nth@Base 0.2.2 - grl_media_get_favourite@Base 0.2.3 - grl_media_get_id@Base 0.2.2 - grl_media_get_keyword@Base 0.2.3 - grl_media_get_keyword_nth@Base 0.2.3 - grl_media_get_last_played@Base 0.2.2 - grl_media_get_last_position@Base 0.2.2 - grl_media_get_license@Base 0.2.2 - grl_media_get_mime@Base 0.2.2 - grl_media_get_modification_date@Base 0.2.2 - grl_media_get_play_count@Base 0.2.2 - grl_media_get_player@Base 0.2.2 - grl_media_get_player_nth@Base 0.2.2 - grl_media_get_publication_date@Base 0.2.2 - grl_media_get_rating@Base 0.2.2 - grl_media_get_region@Base 0.2.3 - grl_media_get_region_data@Base 0.2.3 - grl_media_get_region_data_nth@Base 0.2.3 - grl_media_get_site@Base 0.2.2 - grl_media_get_source@Base 0.2.2 - grl_media_get_start_time@Base 0.2.2 - grl_media_get_studio@Base 0.2.2 - grl_media_get_thumbnail@Base 0.2.2 - grl_media_get_thumbnail_binary@Base 0.2.2 - grl_media_get_thumbnail_binary_nth@Base 0.2.2 - grl_media_get_thumbnail_nth@Base 0.2.2 - grl_media_get_title@Base 0.2.2 - grl_media_get_type@Base 0.2.2 - grl_media_get_url@Base 0.2.2 - grl_media_get_url_data@Base 0.2.2 - grl_media_get_url_data_nth@Base 0.2.2 - grl_media_image_add_url_data@Base 0.2.2 - grl_media_image_get_camera_model@Base 0.2.2 - grl_media_image_get_exposure_time@Base 0.2.2 - grl_media_image_get_flash_used@Base 0.2.2 - grl_media_image_get_height@Base 0.2.2 - grl_media_image_get_iso_speed@Base 0.2.2 - grl_media_image_get_orientation@Base 0.2.2 - grl_media_image_get_type@Base 0.2.2 - grl_media_image_get_url_data@Base 0.2.2 - grl_media_image_get_url_data_nth@Base 0.2.2 - grl_media_image_get_width@Base 0.2.2 - grl_media_image_new@Base 0.2.2 - grl_media_image_set_camera_model@Base 0.2.2 - grl_media_image_set_exposure_time@Base 0.2.2 - grl_media_image_set_flash_used@Base 0.2.2 - grl_media_image_set_height@Base 0.2.2 - grl_media_image_set_iso_speed@Base 0.2.2 - grl_media_image_set_orientation@Base 0.2.2 - grl_media_image_set_size@Base 0.2.2 - grl_media_image_set_url_data@Base 0.2.2 - grl_media_image_set_width@Base 0.2.2 - grl_media_new@Base 0.2.2 - grl_media_serialize@Base 0.2.2 - grl_media_serialize_extended@Base 0.2.2 - grl_media_serialize_type_get_type@Base 0.2.3 - grl_media_set_author@Base 0.2.2 - grl_media_set_certificate@Base 0.2.2 - grl_media_set_creation_date@Base 0.2.2 - grl_media_set_description@Base 0.2.2 - grl_media_set_duration@Base 0.2.2 - grl_media_set_external_player@Base 0.2.2 - grl_media_set_external_url@Base 0.2.2 - grl_media_set_favourite@Base 0.2.3 - grl_media_set_id@Base 0.2.2 - grl_media_set_keyword@Base 0.2.3 - grl_media_set_last_played@Base 0.2.2 - grl_media_set_last_position@Base 0.2.2 - grl_media_set_license@Base 0.2.2 - grl_media_set_mime@Base 0.2.2 - grl_media_set_modification_date@Base 0.2.2 - grl_media_set_play_count@Base 0.2.2 - grl_media_set_publication_date@Base 0.2.2 - grl_media_set_rating@Base 0.2.2 - grl_media_set_region@Base 0.2.3 - grl_media_set_region_data@Base 0.2.3 - grl_media_set_site@Base 0.2.2 - grl_media_set_source@Base 0.2.2 - grl_media_set_studio@Base 0.2.2 - grl_media_set_thumbnail@Base 0.2.2 - grl_media_set_thumbnail_binary@Base 0.2.2 - grl_media_set_title@Base 0.2.2 - grl_media_set_url@Base 0.2.2 - grl_media_set_url_data@Base 0.2.2 - grl_media_type_get_type@Base 0.2.3 - grl_media_unserialize@Base 0.2.2 - grl_media_video_add_director@Base 0.2.3 - grl_media_video_add_performer@Base 0.2.3 - grl_media_video_add_producer@Base 0.2.3 - grl_media_video_add_url_data@Base 0.2.2 - grl_media_video_get_director@Base 0.2.3 - grl_media_video_get_director_nth@Base 0.2.3 - grl_media_video_get_episode@Base 0.2.2 - grl_media_video_get_framerate@Base 0.2.2 - grl_media_video_get_height@Base 0.2.2 - grl_media_video_get_original_title@Base 0.2.3 - grl_media_video_get_performer@Base 0.2.3 - grl_media_video_get_performer_nth@Base 0.2.3 - grl_media_video_get_producer@Base 0.2.3 - grl_media_video_get_producer_nth@Base 0.2.3 - grl_media_video_get_season@Base 0.2.2 - grl_media_video_get_show@Base 0.2.2 - grl_media_video_get_type@Base 0.2.2 - grl_media_video_get_url_data@Base 0.2.2 - grl_media_video_get_url_data_nth@Base 0.2.2 - grl_media_video_get_width@Base 0.2.2 - grl_media_video_new@Base 0.2.2 - grl_media_video_set_director@Base 0.2.3 - grl_media_video_set_episode@Base 0.2.2 - grl_media_video_set_framerate@Base 0.2.2 - grl_media_video_set_height@Base 0.2.2 - grl_media_video_set_original_title@Base 0.2.3 - grl_media_video_set_performer@Base 0.2.3 - grl_media_video_set_producer@Base 0.2.3 - grl_media_video_set_season@Base 0.2.2 - grl_media_video_set_show@Base 0.2.2 - grl_media_video_set_size@Base 0.2.2 - grl_media_video_set_url_data@Base 0.2.2 - grl_media_video_set_width@Base 0.2.2 - grl_metadata_key_get_desc@Base 0.2.2 - grl_metadata_key_get_name@Base 0.2.2 - grl_metadata_key_get_type@Base 0.2.2 - grl_metadata_key_list_new@Base 0.2.2 - grl_metadata_key_setup_system_keys@Base 0.2.2 - grl_multiple_get_media_from_uri@Base 0.2.2 - grl_multiple_search@Base 0.2.2 - grl_multiple_search_sync@Base 0.2.2 - grl_operation_cancel@Base 0.2.2 - grl_operation_generate_id@Base 0.2.2 - grl_operation_get_data@Base 0.2.2 - grl_operation_get_private_data@Base 0.2.2 - grl_operation_init@Base 0.2.2 - grl_operation_options_copy@Base 0.2.2 - grl_operation_options_get_count@Base 0.2.2 - grl_operation_options_get_flags@Base 0.2.2 - grl_operation_options_get_key_filter@Base 0.2.2 - grl_operation_options_get_key_filter_list@Base 0.2.2 - grl_operation_options_get_key_range_filter@Base 0.2.2 - grl_operation_options_get_key_range_filter_list@Base 0.2.2 - grl_operation_options_get_skip@Base 0.2.2 - grl_operation_options_get_type@Base 0.2.2 - grl_operation_options_get_type_filter@Base 0.2.2 - grl_operation_options_key_is_set@Base 0.2.2 - grl_operation_options_new@Base 0.2.2 - grl_operation_options_obey_caps@Base 0.2.2 - grl_operation_options_set_count@Base 0.2.2 - grl_operation_options_set_flags@Base 0.2.2 - grl_operation_options_set_key_filter_dictionary@Base 0.2.2 - grl_operation_options_set_key_filter_value@Base 0.2.2 - grl_operation_options_set_key_filters@Base 0.2.2 - grl_operation_options_set_key_range_filter@Base 0.2.2 - grl_operation_options_set_key_range_filter_value@Base 0.2.2 - grl_operation_options_set_skip@Base 0.2.2 - grl_operation_options_set_type_filter@Base 0.2.2 - grl_operation_remove@Base 0.2.2 - grl_operation_set_data@Base 0.2.2 - grl_operation_set_data_full@Base 0.2.7 - grl_operation_set_private_data@Base 0.2.2 - grl_paging_translate@Base 0.2.2 - grl_plugin_get_author@Base 0.2.2 - grl_plugin_get_description@Base 0.2.2 - grl_plugin_get_filename@Base 0.2.2 - grl_plugin_get_id@Base 0.2.2 - grl_plugin_get_info@Base 0.2.2 - grl_plugin_get_info_keys@Base 0.2.2 - grl_plugin_get_license@Base 0.2.2 - grl_plugin_get_module@Base 0.2.2 - grl_plugin_get_name@Base 0.2.2 - grl_plugin_get_site@Base 0.2.2 - grl_plugin_get_sources@Base 0.2.2 - grl_plugin_get_type@Base 0.2.2 - grl_plugin_get_version@Base 0.2.2 - grl_plugin_load@Base 0.2.2 - grl_plugin_set_filename@Base 0.2.2 - grl_plugin_set_id@Base 0.2.2 - grl_plugin_set_info@Base 0.2.2 - grl_plugin_set_load_func@Base 0.2.2 - grl_plugin_set_module@Base 0.2.2 - grl_plugin_set_optional_info@Base 0.2.2 - grl_plugin_set_unload_func@Base 0.2.2 - grl_plugin_unload@Base 0.2.2 - grl_range_value_dup@Base 0.2.2 - grl_range_value_free@Base 0.2.2 - grl_range_value_get_type@Base 0.2.2 - grl_range_value_hashtable_insert@Base 0.2.2 - grl_range_value_hashtable_new@Base 0.2.2 - grl_range_value_new@Base 0.2.2 - grl_registry_add_config@Base 0.2.2 - grl_registry_add_config_from_file@Base 0.2.2 - grl_registry_add_config_from_resource@Base 0.2.8 - grl_registry_add_directory@Base 0.2.2 - grl_registry_get_default@Base 0.2.2 - grl_registry_get_metadata_keys@Base 0.2.2 - grl_registry_get_plugins@Base 0.2.2 - grl_registry_get_sources@Base 0.2.2 - grl_registry_get_sources_by_operations@Base 0.2.2 - grl_registry_get_type@Base 0.2.2 - grl_registry_load_all_plugins@Base 0.2.2 - grl_registry_load_plugin@Base 0.2.2 - grl_registry_load_plugin_by_id@Base 0.2.2 - grl_registry_load_plugin_directory@Base 0.2.2 - grl_registry_lookup_metadata_key@Base 0.2.2 - grl_registry_lookup_metadata_key_desc@Base 0.2.2 - grl_registry_lookup_metadata_key_name@Base 0.2.2 - grl_registry_lookup_metadata_key_relation@Base 0.2.2 - grl_registry_lookup_metadata_key_type@Base 0.2.2 - grl_registry_lookup_plugin@Base 0.2.2 - grl_registry_lookup_source@Base 0.2.2 - grl_registry_metadata_key_validate@Base 0.2.2 - grl_registry_register_metadata_key@Base 0.2.2 - grl_registry_register_metadata_key_full@Base 0.2.2 - grl_registry_register_metadata_key_relation@Base 0.2.2 - grl_registry_register_source@Base 0.2.2 - grl_registry_restrict_plugins@Base 0.2.2 - grl_registry_unload_plugin@Base 0.2.2 - grl_registry_unregister_source@Base 0.2.2 - grl_related_keys_dup@Base 0.2.2 - grl_related_keys_get@Base 0.2.2 - grl_related_keys_get_binary@Base 0.2.2 - grl_related_keys_get_boolean@Base 0.2.3 - grl_related_keys_get_boxed@Base 0.2.2 - grl_related_keys_get_float@Base 0.2.2 - grl_related_keys_get_int@Base 0.2.2 - grl_related_keys_get_keys@Base 0.2.2 - grl_related_keys_get_string@Base 0.2.2 - grl_related_keys_get_type@Base 0.2.2 - grl_related_keys_has_key@Base 0.2.2 - grl_related_keys_new@Base 0.2.2 - grl_related_keys_new_valist@Base 0.2.2 - grl_related_keys_new_with_keys@Base 0.2.2 - grl_related_keys_remove@Base 0.2.3 - grl_related_keys_set@Base 0.2.2 - grl_related_keys_set_binary@Base 0.2.2 - grl_related_keys_set_boolean@Base 0.2.3 - grl_related_keys_set_boxed@Base 0.2.2 - grl_related_keys_set_float@Base 0.2.2 - grl_related_keys_set_int@Base 0.2.2 - grl_related_keys_set_string@Base 0.2.2 - grl_resolution_flags_get_type@Base 0.2.2 - grl_source_browse@Base 0.2.2 - grl_source_browse_sync@Base 0.2.2 - grl_source_change_type_get_type@Base 0.2.2 - grl_source_get_auto_split_threshold@Base 0.2.2 - grl_source_get_caps@Base 0.2.2 - grl_source_get_description@Base 0.2.2 - grl_source_get_icon@Base 0.2.8 - grl_source_get_id@Base 0.2.2 - grl_source_get_media_from_uri@Base 0.2.2 - grl_source_get_media_from_uri_sync@Base 0.2.2 - grl_source_get_name@Base 0.2.2 - grl_source_get_plugin@Base 0.2.2 - grl_source_get_rank@Base 0.2.2 - grl_source_get_supported_media@Base 0.2.3 - grl_source_get_type@Base 0.2.2 - grl_source_may_resolve@Base 0.2.2 - grl_source_notify_change@Base 0.2.2 - grl_source_notify_change_list@Base 0.2.2 - grl_source_notify_change_start@Base 0.2.2 - grl_source_notify_change_stop@Base 0.2.2 - grl_source_query@Base 0.2.2 - grl_source_query_sync@Base 0.2.2 - grl_source_remove@Base 0.2.2 - grl_source_remove_sync@Base 0.2.2 - grl_source_resolve@Base 0.2.2 - grl_source_resolve_sync@Base 0.2.2 - grl_source_search@Base 0.2.2 - grl_source_search_sync@Base 0.2.2 - grl_source_set_auto_split_threshold@Base 0.2.2 - grl_source_slow_keys@Base 0.2.2 - grl_source_store@Base 0.2.2 - grl_source_store_metadata@Base 0.2.2 - grl_source_store_metadata_sync@Base 0.2.2 - grl_source_store_sync@Base 0.2.2 - grl_source_supported_keys@Base 0.2.2 - grl_source_supported_operations@Base 0.2.2 - grl_source_test_media_from_uri@Base 0.2.2 - grl_source_writable_keys@Base 0.2.2 - grl_supported_ops_get_type@Base 0.2.2 - grl_type_filter_get_type@Base 0.2.2 - grl_wait_for_async_operation_complete@Base 0.2.2 - grl_write_flags_get_type@Base 0.2.2 - (optional)log_log_domain@Base 0.2.2 - (optional)media_log_domain@Base 0.2.2 - (optional)multiple_log_domain@Base 0.2.2 - (optional)plugin_log_domain@Base 0.2.2 - (optional)registry_log_domain@Base 0.2.2 - (optional)source_log_domain@Base 0.2.2 -libgrlnet-0.2.so.0 libgrilo-0.2-0 #MINVER# - grl_net_wc_error_quark@Base 0.2.2 - grl_net_wc_flush_delayed_requests@Base 0.2.2 - grl_net_wc_get_type@Base 0.2.2 - grl_net_wc_new@Base 0.2.2 - grl_net_wc_request_async@Base 0.2.2 - grl_net_wc_request_finish@Base 0.2.2 - grl_net_wc_request_with_headers_async@Base 0.2.2 - grl_net_wc_request_with_headers_hash_async@Base 0.2.2 - grl_net_wc_set_cache@Base 0.2.2 - grl_net_wc_set_cache_size@Base 0.2.2 - grl_net_wc_set_log_level@Base 0.2.2 - grl_net_wc_set_throttling@Base 0.2.2 -libgrlpls-0.2.so.0 libgrilo-0.2-0 #MINVER# - grl_pls_browse@Base 0.2.8 - grl_pls_browse_by_spec@Base 0.2.8 - grl_pls_browse_sync@Base 0.2.8 - grl_pls_file_to_media@Base 0.2.8 - grl_pls_get_file_attributes@Base 0.2.8 - grl_pls_media_is_playlist@Base 0.2.8 diff -Nru grilo-0.2.9/debian/libgrilo-0.2-1.docs grilo-0.2.10/debian/libgrilo-0.2-1.docs --- grilo-0.2.9/debian/libgrilo-0.2-1.docs 1970-01-01 00:00:00.000000000 +0000 +++ grilo-0.2.10/debian/libgrilo-0.2-1.docs 2014-03-20 10:06:43.000000000 +0000 @@ -0,0 +1,4 @@ +AUTHORS +NEWS +README +TODO diff -Nru grilo-0.2.9/debian/libgrilo-0.2-1.install grilo-0.2.10/debian/libgrilo-0.2-1.install --- grilo-0.2.9/debian/libgrilo-0.2-1.install 1970-01-01 00:00:00.000000000 +0000 +++ grilo-0.2.10/debian/libgrilo-0.2-1.install 2014-03-20 10:06:43.000000000 +0000 @@ -0,0 +1 @@ +usr/lib/*/lib*.so.* diff -Nru grilo-0.2.9/debian/libgrilo-0.2-1.symbols grilo-0.2.10/debian/libgrilo-0.2-1.symbols --- grilo-0.2.9/debian/libgrilo-0.2-1.symbols 1970-01-01 00:00:00.000000000 +0000 +++ grilo-0.2.10/debian/libgrilo-0.2-1.symbols 2014-03-20 10:06:43.000000000 +0000 @@ -0,0 +1,450 @@ +libgrilo-0.2.so.1 libgrilo-0.2-1 #MINVER# + GRL_LOG_DOMAIN_DEFAULT@Base 0.2.2 + (optional)_grl_log_free_core_domains@Base 0.2.2 + (optional)_grl_log_init_core_domains@Base 0.2.2 + (optional)config_log_domain@Base 0.2.2 + (optional)data_log_domain@Base 0.2.2 + grl_caps_get_key_filter@Base 0.2.2 + grl_caps_get_key_range_filter@Base 0.2.2 + grl_caps_get_type@Base 0.2.2 + grl_caps_get_type_filter@Base 0.2.2 + grl_caps_is_key_filter@Base 0.2.2 + grl_caps_is_key_range_filter@Base 0.2.2 + grl_caps_new@Base 0.2.2 + grl_caps_set_key_filter@Base 0.2.2 + grl_caps_set_key_range_filter@Base 0.2.2 + grl_caps_set_type_filter@Base 0.2.2 + grl_caps_test_option@Base 0.2.2 + grl_config_get_api_key@Base 0.2.2 + grl_config_get_api_key_blob@Base 0.2.2 + grl_config_get_api_secret@Base 0.2.2 + grl_config_get_api_token@Base 0.2.2 + grl_config_get_api_token_secret@Base 0.2.6 + grl_config_get_binary@Base 0.2.2 + grl_config_get_boolean@Base 0.2.2 + grl_config_get_float@Base 0.2.2 + grl_config_get_int@Base 0.2.2 + grl_config_get_password@Base 0.2.2 + grl_config_get_plugin@Base 0.2.2 + grl_config_get_source@Base 0.2.2 + grl_config_get_string@Base 0.2.2 + grl_config_get_type@Base 0.2.2 + grl_config_get_username@Base 0.2.2 + grl_config_has_param@Base 0.2.2 + grl_config_new@Base 0.2.2 + grl_config_set@Base 0.2.2 + grl_config_set_api_key@Base 0.2.2 + grl_config_set_api_key_blob@Base 0.2.2 + grl_config_set_api_secret@Base 0.2.2 + grl_config_set_api_token@Base 0.2.2 + grl_config_set_api_token_secret@Base 0.2.6 + grl_config_set_binary@Base 0.2.2 + grl_config_set_boolean@Base 0.2.2 + grl_config_set_float@Base 0.2.2 + grl_config_set_int@Base 0.2.2 + grl_config_set_password@Base 0.2.2 + grl_config_set_plugin@Base 0.2.2 + grl_config_set_source@Base 0.2.2 + grl_config_set_string@Base 0.2.2 + grl_config_set_username@Base 0.2.2 + grl_data_add_binary@Base 0.2.2 + grl_data_add_boxed@Base 0.2.2 + grl_data_add_float@Base 0.2.2 + grl_data_add_int@Base 0.2.2 + grl_data_add_related_keys@Base 0.2.2 + grl_data_add_string@Base 0.2.2 + grl_data_dup@Base 0.2.2 + grl_data_get@Base 0.2.2 + grl_data_get_binary@Base 0.2.2 + grl_data_get_boolean@Base 0.2.3 + grl_data_get_boxed@Base 0.2.2 + grl_data_get_float@Base 0.2.2 + grl_data_get_int@Base 0.2.2 + grl_data_get_keys@Base 0.2.2 + grl_data_get_related_keys@Base 0.2.2 + grl_data_get_single_values_for_key@Base 0.2.2 + grl_data_get_single_values_for_key_string@Base 0.2.2 + grl_data_get_string@Base 0.2.2 + grl_data_get_type@Base 0.2.2 + grl_data_has_key@Base 0.2.2 + grl_data_length@Base 0.2.2 + grl_data_new@Base 0.2.2 + grl_data_remove@Base 0.2.2 + grl_data_remove_nth@Base 0.2.2 + grl_data_set@Base 0.2.2 + grl_data_set_binary@Base 0.2.2 + grl_data_set_boolean@Base 0.2.3 + grl_data_set_boxed@Base 0.2.2 + grl_data_set_float@Base 0.2.2 + grl_data_set_int@Base 0.2.2 + grl_data_set_related_keys@Base 0.2.2 + grl_data_set_string@Base 0.2.2 + grl_date_time_from_iso8601@Base 0.2.2 + grl_deinit@Base 0.2.8 + grl_g_value_dup@Base 0.2.2 + grl_g_value_free@Base 0.2.2 + grl_g_value_hashtable_new@Base 0.2.2 + grl_g_value_hashtable_new_direct@Base 0.2.2 + grl_g_value_new@Base 0.2.2 + grl_init@Base 0.2.2 + grl_init_get_option_group@Base 0.2.2 + grl_list_from_va@Base 0.2.2 + grl_log@Base 0.2.2 + grl_log_configure@Base 0.2.2 + grl_log_domain_free@Base 0.2.2 + grl_log_domain_new@Base 0.2.2 + grl_marshal_VOID__BOXED_ENUM_BOOLEAN@Base 0.2.2 + grl_media_add_author@Base 0.2.2 + grl_media_add_external_player@Base 0.2.2 + grl_media_add_external_url@Base 0.2.2 + grl_media_add_keyword@Base 0.2.3 + grl_media_add_region_data@Base 0.2.3 + grl_media_add_thumbnail@Base 0.2.2 + grl_media_add_thumbnail_binary@Base 0.2.2 + grl_media_add_url_data@Base 0.2.2 + grl_media_audio_add_artist@Base 0.2.2 + grl_media_audio_add_genre@Base 0.2.2 + grl_media_audio_add_lyrics@Base 0.2.2 + grl_media_audio_add_url_data@Base 0.2.2 + grl_media_audio_get_album@Base 0.2.2 + grl_media_audio_get_artist@Base 0.2.2 + grl_media_audio_get_artist_nth@Base 0.2.2 + grl_media_audio_get_bitrate@Base 0.2.2 + grl_media_audio_get_genre@Base 0.2.2 + grl_media_audio_get_genre_nth@Base 0.2.2 + grl_media_audio_get_lyrics@Base 0.2.2 + grl_media_audio_get_lyrics_nth@Base 0.2.2 + grl_media_audio_get_track_number@Base 0.2.2 + grl_media_audio_get_type@Base 0.2.2 + grl_media_audio_get_url_data@Base 0.2.2 + grl_media_audio_get_url_data_nth@Base 0.2.2 + grl_media_audio_new@Base 0.2.2 + grl_media_audio_set_album@Base 0.2.2 + grl_media_audio_set_artist@Base 0.2.2 + grl_media_audio_set_bitrate@Base 0.2.2 + grl_media_audio_set_genre@Base 0.2.2 + grl_media_audio_set_lyrics@Base 0.2.2 + grl_media_audio_set_track_number@Base 0.2.2 + grl_media_audio_set_url_data@Base 0.2.2 + grl_media_box_get_childcount@Base 0.2.2 + grl_media_box_get_type@Base 0.2.2 + grl_media_box_new@Base 0.2.2 + grl_media_box_set_childcount@Base 0.2.2 + grl_media_get_author@Base 0.2.2 + grl_media_get_author_nth@Base 0.2.2 + grl_media_get_certificate@Base 0.2.2 + grl_media_get_creation_date@Base 0.2.2 + grl_media_get_description@Base 0.2.2 + grl_media_get_duration@Base 0.2.2 + grl_media_get_external_url@Base 0.2.2 + grl_media_get_external_url_nth@Base 0.2.2 + grl_media_get_favourite@Base 0.2.3 + grl_media_get_id@Base 0.2.2 + grl_media_get_keyword@Base 0.2.3 + grl_media_get_keyword_nth@Base 0.2.3 + grl_media_get_last_played@Base 0.2.2 + grl_media_get_last_position@Base 0.2.2 + grl_media_get_license@Base 0.2.2 + grl_media_get_mime@Base 0.2.2 + grl_media_get_modification_date@Base 0.2.2 + grl_media_get_play_count@Base 0.2.2 + grl_media_get_player@Base 0.2.2 + grl_media_get_player_nth@Base 0.2.2 + grl_media_get_publication_date@Base 0.2.2 + grl_media_get_rating@Base 0.2.2 + grl_media_get_region@Base 0.2.3 + grl_media_get_region_data@Base 0.2.3 + grl_media_get_region_data_nth@Base 0.2.3 + grl_media_get_site@Base 0.2.2 + grl_media_get_size@Base 0.2.10 + grl_media_get_source@Base 0.2.2 + grl_media_get_start_time@Base 0.2.2 + grl_media_get_studio@Base 0.2.2 + grl_media_get_thumbnail@Base 0.2.2 + grl_media_get_thumbnail_binary@Base 0.2.2 + grl_media_get_thumbnail_binary_nth@Base 0.2.2 + grl_media_get_thumbnail_nth@Base 0.2.2 + grl_media_get_title@Base 0.2.2 + grl_media_get_type@Base 0.2.2 + grl_media_get_url@Base 0.2.2 + grl_media_get_url_data@Base 0.2.2 + grl_media_get_url_data_nth@Base 0.2.2 + grl_media_image_add_url_data@Base 0.2.2 + grl_media_image_get_camera_model@Base 0.2.2 + grl_media_image_get_exposure_time@Base 0.2.2 + grl_media_image_get_flash_used@Base 0.2.2 + grl_media_image_get_height@Base 0.2.2 + grl_media_image_get_iso_speed@Base 0.2.2 + grl_media_image_get_orientation@Base 0.2.2 + grl_media_image_get_type@Base 0.2.2 + grl_media_image_get_url_data@Base 0.2.2 + grl_media_image_get_url_data_nth@Base 0.2.2 + grl_media_image_get_width@Base 0.2.2 + grl_media_image_new@Base 0.2.2 + grl_media_image_set_camera_model@Base 0.2.2 + grl_media_image_set_exposure_time@Base 0.2.2 + grl_media_image_set_flash_used@Base 0.2.2 + grl_media_image_set_height@Base 0.2.2 + grl_media_image_set_iso_speed@Base 0.2.2 + grl_media_image_set_orientation@Base 0.2.2 + grl_media_image_set_size@Base 0.2.2 + grl_media_image_set_url_data@Base 0.2.2 + grl_media_image_set_width@Base 0.2.2 + grl_media_new@Base 0.2.2 + grl_media_serialize@Base 0.2.2 + grl_media_serialize_extended@Base 0.2.2 + grl_media_serialize_type_get_type@Base 0.2.3 + grl_media_set_author@Base 0.2.2 + grl_media_set_certificate@Base 0.2.2 + grl_media_set_creation_date@Base 0.2.2 + grl_media_set_description@Base 0.2.2 + grl_media_set_duration@Base 0.2.2 + grl_media_set_external_player@Base 0.2.2 + grl_media_set_external_url@Base 0.2.2 + grl_media_set_favourite@Base 0.2.3 + grl_media_set_id@Base 0.2.2 + grl_media_set_keyword@Base 0.2.3 + grl_media_set_last_played@Base 0.2.2 + grl_media_set_last_position@Base 0.2.2 + grl_media_set_license@Base 0.2.2 + grl_media_set_mime@Base 0.2.2 + grl_media_set_modification_date@Base 0.2.2 + grl_media_set_play_count@Base 0.2.2 + grl_media_set_publication_date@Base 0.2.2 + grl_media_set_rating@Base 0.2.2 + grl_media_set_region@Base 0.2.3 + grl_media_set_region_data@Base 0.2.3 + grl_media_set_site@Base 0.2.2 + grl_media_set_size@Base 0.2.10 + grl_media_set_source@Base 0.2.2 + grl_media_set_studio@Base 0.2.2 + grl_media_set_thumbnail@Base 0.2.2 + grl_media_set_thumbnail_binary@Base 0.2.2 + grl_media_set_title@Base 0.2.2 + grl_media_set_url@Base 0.2.2 + grl_media_set_url_data@Base 0.2.2 + grl_media_type_get_type@Base 0.2.3 + grl_media_unserialize@Base 0.2.2 + grl_media_video_add_director@Base 0.2.3 + grl_media_video_add_performer@Base 0.2.3 + grl_media_video_add_producer@Base 0.2.3 + grl_media_video_add_url_data@Base 0.2.2 + grl_media_video_get_director@Base 0.2.3 + grl_media_video_get_director_nth@Base 0.2.3 + grl_media_video_get_episode@Base 0.2.2 + grl_media_video_get_framerate@Base 0.2.2 + grl_media_video_get_height@Base 0.2.2 + grl_media_video_get_original_title@Base 0.2.3 + grl_media_video_get_performer@Base 0.2.3 + grl_media_video_get_performer_nth@Base 0.2.3 + grl_media_video_get_producer@Base 0.2.3 + grl_media_video_get_producer_nth@Base 0.2.3 + grl_media_video_get_season@Base 0.2.2 + grl_media_video_get_show@Base 0.2.2 + grl_media_video_get_type@Base 0.2.2 + grl_media_video_get_url_data@Base 0.2.2 + grl_media_video_get_url_data_nth@Base 0.2.2 + grl_media_video_get_width@Base 0.2.2 + grl_media_video_new@Base 0.2.2 + grl_media_video_set_director@Base 0.2.3 + grl_media_video_set_episode@Base 0.2.2 + grl_media_video_set_framerate@Base 0.2.2 + grl_media_video_set_height@Base 0.2.2 + grl_media_video_set_original_title@Base 0.2.3 + grl_media_video_set_performer@Base 0.2.3 + grl_media_video_set_producer@Base 0.2.3 + grl_media_video_set_season@Base 0.2.2 + grl_media_video_set_show@Base 0.2.2 + grl_media_video_set_size@Base 0.2.2 + grl_media_video_set_url_data@Base 0.2.2 + grl_media_video_set_width@Base 0.2.2 + grl_metadata_key_get_desc@Base 0.2.2 + grl_metadata_key_get_name@Base 0.2.2 + grl_metadata_key_get_type@Base 0.2.2 + grl_metadata_key_list_new@Base 0.2.2 + grl_metadata_key_setup_system_keys@Base 0.2.2 + grl_multiple_get_media_from_uri@Base 0.2.2 + grl_multiple_search@Base 0.2.2 + grl_multiple_search_sync@Base 0.2.2 + grl_operation_cancel@Base 0.2.2 + grl_operation_generate_id@Base 0.2.2 + grl_operation_get_data@Base 0.2.2 + grl_operation_get_private_data@Base 0.2.2 + grl_operation_init@Base 0.2.2 + grl_operation_options_copy@Base 0.2.2 + grl_operation_options_get_count@Base 0.2.2 + grl_operation_options_get_flags@Base 0.2.2 + grl_operation_options_get_key_filter@Base 0.2.2 + grl_operation_options_get_key_filter_list@Base 0.2.2 + grl_operation_options_get_key_range_filter@Base 0.2.2 + grl_operation_options_get_key_range_filter_list@Base 0.2.2 + grl_operation_options_get_skip@Base 0.2.2 + grl_operation_options_get_type@Base 0.2.2 + grl_operation_options_get_type_filter@Base 0.2.2 + grl_operation_options_key_is_set@Base 0.2.2 + grl_operation_options_new@Base 0.2.2 + grl_operation_options_obey_caps@Base 0.2.2 + grl_operation_options_set_count@Base 0.2.2 + grl_operation_options_set_flags@Base 0.2.2 + grl_operation_options_set_key_filter_dictionary@Base 0.2.2 + grl_operation_options_set_key_filter_value@Base 0.2.2 + grl_operation_options_set_key_filters@Base 0.2.2 + grl_operation_options_set_key_range_filter@Base 0.2.2 + grl_operation_options_set_key_range_filter_value@Base 0.2.2 + grl_operation_options_set_skip@Base 0.2.2 + grl_operation_options_set_type_filter@Base 0.2.2 + grl_operation_remove@Base 0.2.2 + grl_operation_set_data@Base 0.2.2 + grl_operation_set_data_full@Base 0.2.7 + grl_operation_set_private_data@Base 0.2.2 + grl_paging_translate@Base 0.2.2 + grl_plugin_get_author@Base 0.2.2 + grl_plugin_get_description@Base 0.2.2 + grl_plugin_get_filename@Base 0.2.2 + grl_plugin_get_id@Base 0.2.2 + grl_plugin_get_info@Base 0.2.2 + grl_plugin_get_info_keys@Base 0.2.2 + grl_plugin_get_license@Base 0.2.2 + grl_plugin_get_module@Base 0.2.2 + grl_plugin_get_name@Base 0.2.2 + grl_plugin_get_site@Base 0.2.2 + grl_plugin_get_sources@Base 0.2.2 + grl_plugin_get_type@Base 0.2.2 + grl_plugin_get_version@Base 0.2.2 + grl_plugin_load@Base 0.2.2 + grl_plugin_set_filename@Base 0.2.2 + grl_plugin_set_id@Base 0.2.2 + grl_plugin_set_info@Base 0.2.2 + grl_plugin_set_load_func@Base 0.2.2 + grl_plugin_set_module@Base 0.2.2 + grl_plugin_set_optional_info@Base 0.2.2 + grl_plugin_set_unload_func@Base 0.2.2 + grl_plugin_unload@Base 0.2.2 + grl_range_value_dup@Base 0.2.2 + grl_range_value_free@Base 0.2.2 + grl_range_value_get_type@Base 0.2.2 + grl_range_value_hashtable_insert@Base 0.2.2 + grl_range_value_hashtable_new@Base 0.2.2 + grl_range_value_new@Base 0.2.2 + grl_registry_add_config@Base 0.2.2 + grl_registry_add_config_from_file@Base 0.2.2 + grl_registry_add_config_from_resource@Base 0.2.8 + grl_registry_add_directory@Base 0.2.2 + grl_registry_get_default@Base 0.2.2 + grl_registry_get_metadata_keys@Base 0.2.2 + grl_registry_get_plugins@Base 0.2.2 + grl_registry_get_sources@Base 0.2.2 + grl_registry_get_sources_by_operations@Base 0.2.2 + grl_registry_get_type@Base 0.2.2 + grl_registry_load_all_plugins@Base 0.2.2 + grl_registry_load_plugin@Base 0.2.2 + grl_registry_load_plugin_by_id@Base 0.2.2 + grl_registry_load_plugin_directory@Base 0.2.2 + grl_registry_lookup_metadata_key@Base 0.2.2 + grl_registry_lookup_metadata_key_desc@Base 0.2.2 + grl_registry_lookup_metadata_key_name@Base 0.2.2 + grl_registry_lookup_metadata_key_relation@Base 0.2.2 + grl_registry_lookup_metadata_key_type@Base 0.2.2 + grl_registry_lookup_plugin@Base 0.2.2 + grl_registry_lookup_source@Base 0.2.2 + grl_registry_metadata_key_validate@Base 0.2.2 + grl_registry_register_metadata_key@Base 0.2.2 + grl_registry_register_metadata_key_relation@Base 0.2.2 + (optional)grl_registry_register_metadata_key_system@Base 0.2.10 + grl_registry_register_source@Base 0.2.2 + grl_registry_restrict_plugins@Base 0.2.2 + grl_registry_shutdown@Base 0.2.10 + grl_registry_unload_plugin@Base 0.2.2 + grl_registry_unregister_source@Base 0.2.2 + grl_related_keys_dup@Base 0.2.2 + grl_related_keys_get@Base 0.2.2 + grl_related_keys_get_binary@Base 0.2.2 + grl_related_keys_get_boolean@Base 0.2.3 + grl_related_keys_get_boxed@Base 0.2.2 + grl_related_keys_get_float@Base 0.2.2 + grl_related_keys_get_int@Base 0.2.2 + grl_related_keys_get_keys@Base 0.2.2 + grl_related_keys_get_string@Base 0.2.2 + grl_related_keys_get_type@Base 0.2.2 + grl_related_keys_has_key@Base 0.2.2 + grl_related_keys_new@Base 0.2.2 + grl_related_keys_new_valist@Base 0.2.2 + grl_related_keys_new_with_keys@Base 0.2.2 + grl_related_keys_remove@Base 0.2.3 + grl_related_keys_set@Base 0.2.2 + grl_related_keys_set_binary@Base 0.2.2 + grl_related_keys_set_boolean@Base 0.2.3 + grl_related_keys_set_boxed@Base 0.2.2 + grl_related_keys_set_float@Base 0.2.2 + grl_related_keys_set_int@Base 0.2.2 + grl_related_keys_set_string@Base 0.2.2 + grl_resolution_flags_get_type@Base 0.2.2 + grl_source_browse@Base 0.2.2 + grl_source_browse_sync@Base 0.2.2 + grl_source_change_type_get_type@Base 0.2.2 + grl_source_get_auto_split_threshold@Base 0.2.2 + grl_source_get_caps@Base 0.2.2 + grl_source_get_description@Base 0.2.2 + grl_source_get_icon@Base 0.2.8 + grl_source_get_id@Base 0.2.2 + grl_source_get_media_from_uri@Base 0.2.2 + grl_source_get_media_from_uri_sync@Base 0.2.2 + grl_source_get_name@Base 0.2.2 + grl_source_get_plugin@Base 0.2.2 + grl_source_get_rank@Base 0.2.2 + grl_source_get_supported_media@Base 0.2.3 + grl_source_get_tags@Base 0.2.10 + grl_source_get_type@Base 0.2.2 + grl_source_may_resolve@Base 0.2.2 + grl_source_notify_change@Base 0.2.2 + grl_source_notify_change_list@Base 0.2.2 + grl_source_notify_change_start@Base 0.2.2 + grl_source_notify_change_stop@Base 0.2.2 + grl_source_query@Base 0.2.2 + grl_source_query_sync@Base 0.2.2 + grl_source_remove@Base 0.2.2 + grl_source_remove_sync@Base 0.2.2 + grl_source_resolve@Base 0.2.2 + grl_source_resolve_sync@Base 0.2.2 + grl_source_search@Base 0.2.2 + grl_source_search_sync@Base 0.2.2 + grl_source_set_auto_split_threshold@Base 0.2.2 + grl_source_slow_keys@Base 0.2.2 + grl_source_store@Base 0.2.2 + grl_source_store_metadata@Base 0.2.2 + grl_source_store_metadata_sync@Base 0.2.2 + grl_source_store_sync@Base 0.2.2 + grl_source_supported_keys@Base 0.2.2 + grl_source_supported_operations@Base 0.2.2 + grl_source_test_media_from_uri@Base 0.2.2 + grl_source_writable_keys@Base 0.2.2 + grl_supported_ops_get_type@Base 0.2.2 + grl_type_filter_get_type@Base 0.2.2 + grl_wait_for_async_operation_complete@Base 0.2.2 + grl_write_flags_get_type@Base 0.2.2 + (optional)log_log_domain@Base 0.2.2 + (optional)media_log_domain@Base 0.2.2 + (optional)multiple_log_domain@Base 0.2.2 + (optional)plugin_log_domain@Base 0.2.2 + (optional)registry_log_domain@Base 0.2.2 + (optional)source_log_domain@Base 0.2.2 +libgrlnet-0.2.so.0 libgrilo-0.2-1 #MINVER# + grl_net_wc_error_quark@Base 0.2.2 + grl_net_wc_flush_delayed_requests@Base 0.2.2 + grl_net_wc_get_type@Base 0.2.2 + grl_net_wc_new@Base 0.2.2 + grl_net_wc_request_async@Base 0.2.2 + grl_net_wc_request_finish@Base 0.2.2 + grl_net_wc_request_with_headers_async@Base 0.2.2 + grl_net_wc_request_with_headers_hash_async@Base 0.2.2 + grl_net_wc_set_cache@Base 0.2.2 + grl_net_wc_set_cache_size@Base 0.2.2 + grl_net_wc_set_log_level@Base 0.2.2 + grl_net_wc_set_throttling@Base 0.2.2 +libgrlpls-0.2.so.0 libgrilo-0.2-1 #MINVER# + grl_pls_browse@Base 0.2.8 + grl_pls_browse_by_spec@Base 0.2.8 + grl_pls_browse_sync@Base 0.2.8 + grl_pls_file_to_media@Base 0.2.8 + grl_pls_get_file_attributes@Base 0.2.8 + grl_pls_media_is_playlist@Base 0.2.8 diff -Nru grilo-0.2.9/debian/rules grilo-0.2.10/debian/rules --- grilo-0.2.9/debian/rules 2014-02-17 21:58:07.000000000 +0000 +++ grilo-0.2.10/debian/rules 2014-03-20 10:06:43.000000000 +0000 @@ -6,16 +6,17 @@ override_dh_auto_configure: VAPIDIR=/usr/share/vala/vapi \ dh_auto_configure -- --enable-gtk-doc --enable-vala \ - --enable-introspection --enable-grl-net --disable-debug + --enable-introspection --enable-grl-net --disable-debug \ + --disable-silent-rules override_dh_install: dh_install ( cd $(CURDIR)/debian/libgrilo-0.2-bin/usr/share/man/man1 && \ - mv grl-inspect.1 grl-inspect-0.2.0 ) + mv grl-inspect.1 grl-inspect-0.2.1 ) override_dh_shlibdeps: dh_shlibdeps dh_girepository override_dh_strip: - dh_strip --dbg-package=libgrilo-0.2-0-dbg + dh_strip --dbg-package=libgrilo-0.2-1-dbg diff -Nru grilo-0.2.9/doc/grilo/grilo-sections.txt grilo-0.2.10/doc/grilo/grilo-sections.txt --- grilo-0.2.9/doc/grilo/grilo-sections.txt 2014-02-18 14:17:01.000000000 +0000 +++ grilo-0.2.10/doc/grilo/grilo-sections.txt 2014-03-20 09:13:39.000000000 +0000 @@ -380,6 +380,7 @@ grl_media_get_url grl_media_get_url_data grl_media_get_url_data_nth +grl_media_get_size grl_media_serialize grl_media_serialize_extended grl_media_set_author @@ -410,6 +411,7 @@ grl_media_set_title grl_media_set_url grl_media_set_url_data +grl_media_set_size grl_media_unserialize GRL_IS_MEDIA diff -Nru grilo-0.2.9/doc/grilo/html/annotation-glossary.html grilo-0.2.10/doc/grilo/html/annotation-glossary.html --- grilo-0.2.9/doc/grilo/html/annotation-glossary.html 2014-02-18 14:17:01.000000000 +0000 +++ grilo-0.2.10/doc/grilo/html/annotation-glossary.html 2014-03-20 09:13:39.000000000 +0000 @@ -11,7 +11,7 @@ - +