This commit is contained in:
parent
abc84ea658
commit
c4979b99f2
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:275151ec010eee216eb8bc0cda1b9a3aa0df33be1279bd02f25b17cdef7b1d26
|
||||
size 999325
|
3
gvfs-1.1.8.tar.bz2
Normal file
3
gvfs-1.1.8.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:42ea0c268880101de5579628ed1bae8cd6de37114918c44e4d1af7350b72f219
|
||||
size 1031399
|
41
gvfs.changes
41
gvfs.changes
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 10 21:10:10 CET 2009 - vuntz@novell.com
|
||||
|
||||
- Update to version 1.1.8:
|
||||
+ Fix crashers and leaks
|
||||
+ Handle file:// uris with anchors in gvfs-open
|
||||
+ fuse: Support ftruncate to the current file size
|
||||
+ escape/unescape hostname part in uris, allowing spaces in e.g.
|
||||
smb domains
|
||||
+ hal: Fix "No mount object" error on mount
|
||||
+ Change details of the new .xdg-volume-info file format
|
||||
+ Fix races in cancellation of gvfs streams
|
||||
+ Remove debug spew from backends
|
||||
+ ftp: Fix anonymous login
|
||||
+ gphoto2: Ignore broken storages with no capacity
|
||||
+ Don't globally modify COMP_WORDBREAKS in bash completion script
|
||||
+ Don't ask for username when getting ssh key passphrase
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 6 02:48:39 CET 2009 - vuntz@novell.com
|
||||
|
||||
- Update to version 1.1.7:
|
||||
+ Fix build on some platforms
|
||||
+ ftp: Fix short read errors
|
||||
+ gphoto2: Make it work on iphone
|
||||
+ sftp: Fix symlink creation
|
||||
+ fuse: Better support of truncation, fixing OOo save
|
||||
+ proxy monitors: Support mount operations, etc
|
||||
+ gvfs-mount: add --device commandline support
|
||||
+ sftp: Fix protocol bug that made some servers not work
|
||||
+ general support for query_info over streams, implemented for
|
||||
smb, sftp
|
||||
+ Initial support for .xdg-volume-info reading
|
||||
- Remove -fno-strict-aliasing from CFLAGS.
|
||||
- Remove AutoReqProv: it's default now.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 16 17:49:47 CET 2009 - sbrabec@suse.cz
|
||||
|
||||
- Added support for translation-update-upstream (FATE#301344).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 16 16:35:01 CET 2009 - mboman@suse.de
|
||||
|
||||
|
40
gvfs.spec
40
gvfs.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package gvfs (Version 1.1.6)
|
||||
# spec file for package gvfs (Version 1.1.8)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -35,8 +35,9 @@ BuildRequires: libgphoto2-devel
|
||||
BuildRequires: libsmbclient-devel
|
||||
BuildRequires: libsoup-devel
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: translation-update-upstream
|
||||
Summary: VFS functionality for GLib
|
||||
Version: 1.1.6
|
||||
Version: 1.1.8
|
||||
Release: 1
|
||||
License: LGPL v2.0 or later
|
||||
Group: Development/Libraries/C and C++
|
||||
@ -53,7 +54,6 @@ Patch5: gvfs-nvvfs.patch
|
||||
Patch6: gvfs-nds.patch
|
||||
Url: http://www.gnome.org
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
AutoReqProv: on
|
||||
Requires: %{name}-lang = %{version}
|
||||
Requires: libgvfscommon0 = %{version}
|
||||
Recommends: gvfs-backends
|
||||
@ -135,6 +135,7 @@ Authors:
|
||||
%lang_package
|
||||
%prep
|
||||
%setup -n %{name}-%{version}
|
||||
translation-update-upstream
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch4 -p1
|
||||
@ -142,7 +143,6 @@ Authors:
|
||||
#%patch6 -p1
|
||||
|
||||
%build
|
||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||
autoreconf -f
|
||||
libtoolize -c -f
|
||||
%configure \
|
||||
@ -217,6 +217,38 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%files lang -f %{name}.lang
|
||||
|
||||
%changelog
|
||||
* Tue Mar 10 2009 vuntz@novell.com
|
||||
- Update to version 1.1.8:
|
||||
+ Fix crashers and leaks
|
||||
+ Handle file:// uris with anchors in gvfs-open
|
||||
+ fuse: Support ftruncate to the current file size
|
||||
+ escape/unescape hostname part in uris, allowing spaces in e.g.
|
||||
smb domains
|
||||
+ hal: Fix "No mount object" error on mount
|
||||
+ Change details of the new .xdg-volume-info file format
|
||||
+ Fix races in cancellation of gvfs streams
|
||||
+ Remove debug spew from backends
|
||||
+ ftp: Fix anonymous login
|
||||
+ gphoto2: Ignore broken storages with no capacity
|
||||
+ Don't globally modify COMP_WORDBREAKS in bash completion script
|
||||
+ Don't ask for username when getting ssh key passphrase
|
||||
* Fri Mar 06 2009 vuntz@novell.com
|
||||
- Update to version 1.1.7:
|
||||
+ Fix build on some platforms
|
||||
+ ftp: Fix short read errors
|
||||
+ gphoto2: Make it work on iphone
|
||||
+ sftp: Fix symlink creation
|
||||
+ fuse: Better support of truncation, fixing OOo save
|
||||
+ proxy monitors: Support mount operations, etc
|
||||
+ gvfs-mount: add --device commandline support
|
||||
+ sftp: Fix protocol bug that made some servers not work
|
||||
+ general support for query_info over streams, implemented for
|
||||
smb, sftp
|
||||
+ Initial support for .xdg-volume-info reading
|
||||
- Remove -fno-strict-aliasing from CFLAGS.
|
||||
- Remove AutoReqProv: it's default now.
|
||||
* Mon Feb 16 2009 sbrabec@suse.cz
|
||||
- Added support for translation-update-upstream (FATE#301344).
|
||||
* Mon Feb 16 2009 mboman@suse.de
|
||||
- Update to version 1.1.6:
|
||||
+ Fix crashes
|
||||
|
Loading…
Reference in New Issue
Block a user