OBS User unknown 2008-08-28 21:15:00 +00:00 committed by Git OBS Bridge
parent 8b4e30d443
commit 40d9d7c5c9
5 changed files with 43 additions and 52 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d29f5ddef44e879afab7554c401befb962c1f21c56ccc35a47c713cf54b533a4
size 847453

3
gvfs-0.99.5.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4824b545badba625201bf8c5b08e961a318b151df8536c103063280f73d69898
size 892072

View File

@ -1,37 +0,0 @@
--- gvfs-0.2.3-post/daemon/gvfsbackendtrash.c 2008-04-07 20:27:43.000000000 -0500
+++ gvfs-0.2.3-work/daemon/gvfsbackendtrash.c 2008-05-13 00:04:28.000000000 -0500
@@ -517,12 +517,33 @@ list_trash_dirs (void)
GList *topdirs_info;
struct stat statbuf;
gboolean has_trash_files;
+ int stat_result;
dirs = NULL;
has_trash_files = FALSE;
home_trash = g_build_filename (g_get_user_data_dir (), "Trash", NULL);
- if (lstat (home_trash, &statbuf) == 0 &&
+
+ /* If the home trash directory doesn't exist at this point, we must create
+ * it in order to monitor it. */
+
+ stat_result = lstat (home_trash, &statbuf);
+
+ if (stat_result != 0)
+ {
+ gchar *home_trash_files = g_build_filename (home_trash, "files", NULL);
+ gchar *home_trash_info = g_build_filename (home_trash, "info", NULL);
+
+ g_mkdir_with_parents (home_trash_files, 0700);
+ g_mkdir_with_parents (home_trash_info, 0700);
+
+ g_free (home_trash_files);
+ g_free (home_trash_info);
+
+ stat_result = lstat (home_trash, &statbuf);
+ }
+
+ if (stat_result == 0 &&
S_ISDIR (statbuf.st_mode))
{
dirs = g_list_prepend (dirs, home_trash);

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Thu Aug 28 19:15:50 CEST 2008 - maw@suse.de
- Update to version 0.93.5:
+ Support und update serialization of GEmblem and GEmblemedIcon
+ Add x-content/* support to daemon mounts
+ Use standard icon names
+ FTP backend now restores file permissions when replacing a
file
+ Miscellaneous unreported bug fixes
+ Bugs fixed: bgo#545695, bgo#545489, bgo#544008, bgo#543552,
bgo#528891, bgo#525779, bgo#545968, bgo#545966, bgo#509740,
bgo#539167, bgo#528848, bgo#518284, bgo#41852, and bgo#546300
+ Updated translations
- Drop gvfs-bnc382172-home-trash-monitoring.patch, because it has
been upstreamed (see bgo#509740 and bnc#382172).
-------------------------------------------------------------------
Fri Aug 1 14:24:14 CDT 2008 - maw@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package gvfs (Version 0.99.3)
# spec file for package gvfs (Version 0.99.5)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -31,15 +31,13 @@ BuildRequires: libgphoto2
BuildRequires: extra-rpm-macros
%endif
Summary: VFS functionality for GLib
Version: 0.99.3
Version: 0.99.5
Release: 1
License: LGPL v2.0 or later
Group: Development/Libraries/C and C++
Source0: %{name}-%{version}.tar.bz2
# PATCH-FIX-UPSTREAM gvfs-no-shebang.patch bgo523420 maw@suse.de -- Is this even worth upstreaming?
Patch0: gvfs-no-shebang.patch
# PATCH-FIX-UPSTREAM gvfs-bnc382172-home-trash-monitoring.patch hpj@novell.com
Patch2: gvfs-bnc382172-home-trash-monitoring.patch
Url: http://www.gnome.org
BuildRoot: %{_tmppath}/%{name}-%{version}-build
AutoReqProv: on
@ -126,7 +124,6 @@ Authors:
%prep
%setup -n %{name}-%{version}
%patch0 -p1
%patch2 -p1
%build
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
@ -182,6 +179,20 @@ rm -rf $RPM_BUILD_ROOT
%files lang -f %{name}.lang
%changelog
* Thu Aug 28 2008 maw@suse.de
- Update to version 0.93.5:
+ Support und update serialization of GEmblem and GEmblemedIcon
+ Add x-content/* support to daemon mounts
+ Use standard icon names
+ FTP backend now restores file permissions when replacing a
file
+ Miscellaneous unreported bug fixes
+ Bugs fixed: bgo#545695, bgo#545489, bgo#544008, bgo#543552,
bgo#528891, bgo#525779, bgo#545968, bgo#545966, bgo#509740,
bgo#539167, bgo#528848, bgo#518284, bgo#41852, and bgo#546300
+ Updated translations
- Drop gvfs-bnc382172-home-trash-monitoring.patch, because it has
been upstreamed (see bgo#509740 and bnc#382172).
* Fri Aug 01 2008 maw@suse.de
- Update to version 0.99.3:
+ Move hal and gphoto volume monitors out of process
@ -202,14 +213,14 @@ rm -rf $RPM_BUILD_ROOT
+ Many smaller bug fixes
+ Updated translations
- Remove upstreamed patch: gvfs-bnc368628-fuse-robustness.patch.
* Fri May 23 2008 hpj@suse.de
* Sat May 24 2008 hpj@suse.de
- Merge gvfs-bgo531516-fuse-cleanup-when-killed.patch into
gvfs-bnc368628-fuse-robustness.patch so as to avoid overlapping
patches.
- Add upstream fixes to thread locking and file handle life-cycles
to gvfs-bnc368628-fuse-robustness.patch. Prevents more crashes.
- Depend on libcdio-devel for building, so we get the CDDA backend.
* Wed May 21 2008 hpj@suse.de
* Thu May 22 2008 hpj@suse.de
- Add gvfs-bgo531516-fuse-cleanup-when-killed.patch, which fixes
the remaining issues covered by BNC #368628.
* Tue May 13 2008 hpj@suse.de
@ -218,7 +229,7 @@ rm -rf $RPM_BUILD_ROOT
* Thu May 08 2008 hpj@suse.de
- Add gvfs-bnc368628-fuse-robustness.patch, which probably fixes
BNC #368628.
* Wed Apr 09 2008 maw@suse.de
* Thu Apr 10 2008 maw@suse.de
- Update to version 0.2.3:
+ WebDAV: implement set_display_name
+ WebDAV fixes
@ -241,7 +252,7 @@ rm -rf $RPM_BUILD_ROOT
* sftp: Kerberos support
* smb: Port to new samba 3.2.0 API (backwards compat)
* sftp: Handle overwrites correctly (was silent overwrite)
* Tue Mar 25 2008 maw@suse.de
* Wed Mar 26 2008 maw@suse.de
- gvfs now recommends gvfs-backends (bnc#373477).
* Wed Mar 19 2008 maw@suse.de
- Reduce build requirements
@ -261,7 +272,7 @@ rm -rf $RPM_BUILD_ROOT
* Enviroment variable to disable fuse backend at runtime
* Mon Mar 17 2008 jpr@suse.de
- Add recommends for obex-data-server (bnc #368776)
* Thu Mar 13 2008 maw@suse.de
* Fri Mar 14 2008 maw@suse.de
- Update to version 0.2.0.1:
+ Fix crashes
+ Build and portability fixes
@ -273,7 +284,7 @@ rm -rf $RPM_BUILD_ROOT
+ obex: Give better error message on broken phones
+ sftp: Allow setting permissions
+ dav: Correct mount name, file icons and file types.
* Tue Mar 04 2008 jpr@suse.de
* Wed Mar 05 2008 jpr@suse.de
- Update to version 0.1.11
* Correctly free mounts
* Disable debug log
@ -307,7 +318,7 @@ rm -rf $RPM_BUILD_ROOT
* Add bash completion support for command line apps
* Fix handling of blank cds and audio cds
* Support port in sftp uris
* Thu Feb 28 2008 jpr@suse.de
* Fri Feb 29 2008 jpr@suse.de
- Move the gio modules into the main package (#358748)
- Enable gconf backend
* Mon Feb 18 2008 maw@suse.de