Hello community, here is the log from the commit of package gvfs for openSUSE:Factory checked in at 2013-05-28 07:38:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gvfs (Old) and /work/SRC/openSUSE:Factory/.gvfs.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gvfs" Changes: -------- --- /work/SRC/openSUSE:Factory/gvfs/gvfs.changes 2013-04-26 15:51:34.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gvfs.new/gvfs.changes 2013-05-28 07:38:01.000000000 +0200 @@ -1,0 +2,27 @@ +Wed May 1 08:17:16 UTC 2013 - [email protected] + +- Update to version 1.17.0: + + daemon: + - Tweak read sizes. + - Close channels belonging to the active mount only. + - Add infrastructure for the backends to exit cleanly. + + channel: + - Unqueue cancelled requests. + - Verify that replies are for the right serial. + + mtp: + - Refactor read path in preparation for supporting normal + files. + - Use Android extensions to support in place read and write of + files. + - Use normal filenames in paths. + - When removing cache entries, remove children too. + - Clear previous cache entries when refreshing a directory. + - Clear cache and emit delete events when an object is removed. + - Handle overwriting of files in do_push and do_pull correctly. + - Use standard name for SD Card icon. + + GVfsIcon: support icon serialisation. + + Man pages typo fixes. + + Updated translations. +- Add gvfs-mtp-build.patch: fix signature of add_cache_entry(). + +------------------------------------------------------------------- Old: ---- gvfs-1.16.1.tar.xz New: ---- gvfs-1.17.0.tar.xz gvfs-mtp-build.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gvfs.spec ++++++ --- /var/tmp/diff_new_pack.AwuQrf/_old 2013-05-28 07:38:02.000000000 +0200 +++ /var/tmp/diff_new_pack.AwuQrf/_new 2013-05-28 07:38:02.000000000 +0200 @@ -20,18 +20,20 @@ %define with_cdda 1 Name: gvfs -Version: 1.16.1 +Version: 1.17.0 Release: 0 Summary: VFS functionality for GLib License: LGPL-2.0+ Group: Development/Libraries/C and C++ Url: http://www.gnome.org -Source0: http://download.gnome.org/sources/gvfs/1.16/%{name}-%{version}.tar.xz +Source0: http://download.gnome.org/sources/gvfs/1.17/%{name}-%{version}.tar.xz Source99: baselibs.conf # PATCH-FEATURE-OPENSUSE gvfs-nvvfs.patch [email protected] -- Provides gvfs backend for novell nautilus plugin Patch5: gvfs-nvvfs.patch # PATCH-FEATURE-OPENSUSE gvfs-nds.patch [email protected] -- Provides NDS browsing for nautilus Patch6: gvfs-nds.patch +# PATCH-FIX-UPSTREAM gvfs-mtp-build.patch bgo#699424 [email protected] -- MTP: Fix compilation warning. +Patch7: gvfs-mtp-build.patch BuildRequires: bluez-devel BuildRequires: docbook-xsl-stylesheets BuildRequires: fuse-devel @@ -57,7 +59,7 @@ BuildRequires: pkgconfig(dbus-glib-1) BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(gio-unix-2.0) -BuildRequires: pkgconfig(glib-2.0) >= 2.35.0 +BuildRequires: pkgconfig(glib-2.0) >= 2.37.0 BuildRequires: pkgconfig(goa-1.0) >= 3.7.1 BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(gtk+-3.0) => 3.0 @@ -139,6 +141,7 @@ translation-update-upstream %patch5 -p1 %patch6 -p1 +%patch7 -p1 %build autoreconf -f ++++++ gvfs-1.16.1.tar.xz -> gvfs-1.17.0.tar.xz ++++++ ++++ 15967 lines of diff (skipped) ++++++ gvfs-mtp-build.patch ++++++ >From 238a92496f5ab165b52f90d414379525cb262ee1 Mon Sep 17 00:00:00 2001 From: Philip Langdale <[email protected]> Date: Wed, 01 May 2013 22:33:02 +0000 Subject: MTP: Fix compilation warning. The add_cache_entry helper's signature said it returned the CacheEntry but it doesn't. https://bugzilla.gnome.org/show_bug.cgi?id=699424 --- diff --git a/daemon/gvfsbackendmtp.c b/daemon/gvfsbackendmtp.c index 48f6b8b..cbdbb02 100644 --- a/daemon/gvfsbackendmtp.c +++ b/daemon/gvfsbackendmtp.c @@ -144,7 +144,7 @@ emit_delete_event (gpointer key, * Cache Helpers ************************************************/ -static CacheEntry * +static void add_cache_entry (GVfsBackendMtp *backend, char *path, uint32_t storage, @@ -291,7 +291,6 @@ remove_cache_entry (GVfsBackendMtp *backend, const char *path) { DEBUG ("(III) remove_cache_entry: %s", path); - //g_hash_table_remove (backend->file_cache, path); g_hash_table_foreach_remove (backend->file_cache, remove_cache_entry_by_prefix, (gpointer) path); -- cgit v0.9.1 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
