source: projects/specs/trunk/g/gvfs/gvfs-vl.spec @ 9804

Revision 9804, 18.2 KB checked in by Takemikaduchi, 8 years ago (diff)

GNOME-3.18.2 & Cinnamon-2.8.4

Line 
1Summary: Backends for the gio framework in GLib
2Summary(ja): GLib の GIO フレームワークのバックエンド
3Name: gvfs
4Version: 1.26.2
5Release: 1%{?_dist_release}
6License: LGPLv2+
7Group: System Environment/Libraries
8URL: http://www.gtk.org
9Source: http://ftp.gnome.org/pub/GNOME/sources/gvfs/1.26/%{name}-%{version}.tar.xz
10
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12BuildRequires: pkgconfig
13BuildRequires: glib2-devel >= 2.24.0
14BuildRequires: gtk3-devel
15BuildRequires: dbus-glib-devel
16BuildRequires: /usr/bin/ssh
17BuildRequires: libcdio-paranoia-devel
18BuildRequires: libsoup-devel >= 2.30.0
19BuildRequires: avahi-glib-devel >= 0.6
20BuildRequires: libgnome-keyring-devel
21BuildRequires: intltool
22BuildRequires: gettext
23BuildRequires: perl-XML-Parser
24BuildRequires: eudev-libgudev1-devel
25BuildRequires: udisks2-devel
26BuildRequires: libsecret-devel
27BuildRequires: libmtp-devel
28BuildRequires: gnome-online-accounts-devel
29BuildRequires: gcr-devel
30
31Requires(post): desktop-file-utils
32Requires(postun): desktop-file-utils
33
34# The patch touches Makefile.am files:
35BuildRequires: automake autoconf
36BuildRequires: libtool
37
38Provides: gnome-mount < 0.9
39Obsoletes: gnome-mount < 0.9
40
41Obsoletes: %{name}-obexftp < 1.24.0
42
43Patch1: gvfs-1.16.0-archive-integration.patch
44
45Vendor: Project Vine
46Distribution: Vine Linux
47Packager: Takemikaduchi
48
49%description
50The gvfs package provides backend implementations for the gio
51framework in GLib. It includes ftp, sftp, cifs.
52
53%package devel
54Summary: Development files for gvfs
55Group: Development/Libraries
56Requires: %{name} = %{version}-%{release}
57
58%description devel
59The gvfs-devel package contains headers and other files that are
60required to develop applications using gvfs.
61
62%package fuse
63Summary: FUSE support for gvfs
64Group: System Environment/Libraries
65Requires: %{name} = %{version}-%{release}
66BuildRequires: fuse-devel
67Requires: fuse
68
69%description fuse
70This package provides support for applications not using gio
71to access the gvfs filesystems.
72
73
74%package smb
75Summary: Windows fileshare support for gvfs
76Group: System Environment/Libraries
77Requires: %{name} = %{version}-%{release}
78BuildRequires: libsmbclient-devel
79
80%description smb
81This package provides support for reading and writing files on windows
82shares (SMB) to applications using gvfs.
83
84
85%package archive
86Summary: Archiving support for gvfs
87Group: System Environment/Libraries
88Requires: %{name} = %{version}-%{release}
89BuildRequires: libarchive-devel
90
91%description archive
92This package provides support for accessing files inside Zip and Tar archives,
93as well as ISO images, to applications using gvfs.
94
95
96%package gphoto2
97Summary: gphoto2 support for gvfs
98Group: System Environment/Libraries
99Requires: %{name} = %{version}-%{release}
100BuildRequires: libgphoto2-devel
101BuildRequires: libusb-devel
102BuildRequires: libexif-devel
103
104%description gphoto2
105This package provides support for reading and writing files on
106PTP based cameras (Picture Transfer Protocol) and MTP based
107media players (Media Transfer Protocol) to applications using gvfs.
108
109
110%package afc
111Summary: AFC support for gvfs
112Group: System Environment/Libraries
113Requires: %{name} = %{version}-%{release}
114Requires: usbmuxd
115BuildRequires: libimobiledevice-devel >= 0.9.7
116
117%description afc
118This package provides support for reading files on mobile devices
119including phones and music players to applications using gvfs.
120
121
122%package mtp
123Summary: MTP support for gvfs
124Group: System Environment/Libraries
125Requires: %{name}%{?_isa} = %{version}-%{release}
126BuildRequires: libmtp-devel >= 1.1.0
127
128%description mtp
129This package provides support for reading and writing files on
130MTP based devices (Media Transfer Protocol) to applications using gvfs.
131
132
133%package goa
134Summary: GOA support for gvfs
135Group: System Environment/Libraries
136Requires: %{name}%{?_isa} = %{version}-%{release}
137BuildRequires: gnome-online-accounts-devel >= 3.7.1
138
139%description goa
140This package provides seamless integration with gnome-online-accounts
141file services.
142
143
144%prep
145%setup -q
146%patch1 -p1 -b .archive-integration
147
148%build
149
150# Needed for gvfs-0.2.1-archive-integration.patch
151libtoolize --force  || :
152aclocal  || :
153autoheader  || :
154automake  || :
155autoconf  || :
156
157%configure \
158        --disable-hal \
159        --disable-gdu \
160        --disable-nfs \
161        --enable-mtp \
162        --disable-libsystemd-login
163make # %{?_smp_mflags}
164
165%install
166rm -rf $RPM_BUILD_ROOT
167make install DESTDIR=$RPM_BUILD_ROOT
168
169find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
170rm -rf $RPM_BUILD_ROOT%{_prefix}/lib/systemd
171
172%find_lang gvfs
173
174%clean
175rm -rf $RPM_BUILD_ROOT
176
177%post
178/sbin/ldconfig
179# Reload .mount files:
180killall -USR1 gvfsd >&/dev/null || :
181# Update desktop files mime mappings:
182update-desktop-database &> /dev/null ||:
183update-gio-modules "$host" &> /dev/null || :
184
185%postun
186/sbin/ldconfig
187# Update desktop files mime mappings:
188update-desktop-database &> /dev/null ||:
189update-gio-modules "$host" &> /dev/null || :
190
191# Reload .mount files when single subpackage is installed:
192%post smb
193killall -USR1 gvfsd >&/dev/null || :
194%post archive
195killall -USR1 gvfsd >&/dev/null || :
196%post gphoto2
197killall -USR1 gvfsd >&/dev/null || :
198%post afc
199killall -USR1 gvfsd >&/dev/null || :
200
201
202%files -f gvfs.lang
203%defattr(-, root, root, -)
204%doc AUTHORS COPYING NEWS README
205%dir %{_datadir}/gvfs
206%dir %{_datadir}/gvfs/mounts
207%{_datadir}/bash-completion/completions/gvfs-*
208%{_datadir}/gvfs/mounts/afp.mount
209%{_datadir}/gvfs/mounts/afp-browse.mount
210%{_datadir}/gvfs/mounts/sftp.mount
211%{_datadir}/gvfs/mounts/trash.mount
212%{_datadir}/gvfs/mounts/cdda.mount
213%{_datadir}/gvfs/mounts/computer.mount
214%{_datadir}/gvfs/mounts/dav.mount
215%{_datadir}/gvfs/mounts/dav+sd.mount
216%{_datadir}/gvfs/mounts/http.mount
217%{_datadir}/gvfs/mounts/localtest.mount
218%{_datadir}/gvfs/mounts/burn.mount
219%{_datadir}/gvfs/mounts/dns-sd.mount
220%{_datadir}/gvfs/mounts/network.mount
221%{_datadir}/gvfs/mounts/ftp.mount
222%{_datadir}/gvfs/mounts/ftps.mount
223%{_datadir}/gvfs/mounts/recent.mount
224%{_datadir}/dbus-1/services/org.gtk.vfs.UDisks2VolumeMonitor.service
225%{_datadir}/dbus-1/services/org.gtk.vfs.Daemon.service
226%{_datadir}/dbus-1/services/org.gtk.vfs.Metadata.service
227%{_datadir}/gvfs/remote-volume-monitors/udisks2.monitor
228%{_datadir}/GConf/gsettings/gvfs-dns-sd.convert
229%{_datadir}/glib-2.0/schemas/org.gnome.system.dns_sd.gschema.xml
230%{_datadir}/glib-2.0/schemas/org.gnome.system.gvfs.enums.xml
231%{_libdir}/gio/modules/libgioremote-volume-monitor.so
232%{_libdir}/gio/modules/libgvfsdbus.so
233%{_libdir}/%{name}/libgvfscommon.so
234%{_libdir}/%{name}/libgvfsdaemon.so
235%{_libexecdir}/gvfsd
236%{_libexecdir}/gvfsd-afp
237%{_libexecdir}/gvfsd-afp-browse
238%{_libexecdir}/gvfsd-ftp
239%{_libexecdir}/gvfsd-sftp
240%{_libexecdir}/gvfsd-trash
241%{_libexecdir}/gvfsd-cdda
242%{_libexecdir}/gvfsd-computer
243%{_libexecdir}/gvfsd-dav
244%{_libexecdir}/gvfsd-http
245%{_libexecdir}/gvfsd-localtest
246%{_libexecdir}/gvfsd-burn
247%{_libexecdir}/gvfsd-dnssd
248%{_libexecdir}/gvfsd-network
249%{_libexecdir}/gvfsd-metadata
250%{_libexecdir}/gvfsd-recent
251%{_libexecdir}/gvfs-udisks2-volume-monitor
252%{_bindir}/gvfs-cat
253%{_bindir}/gvfs-copy
254%{_bindir}/gvfs-info
255%{_bindir}/gvfs-less
256%{_bindir}/gvfs-ls
257%{_bindir}/gvfs-mime
258%{_bindir}/gvfs-mkdir
259%{_bindir}/gvfs-monitor-dir
260%{_bindir}/gvfs-monitor-file
261%{_bindir}/gvfs-mount
262%{_bindir}/gvfs-move
263%{_bindir}/gvfs-open
264%{_bindir}/gvfs-rename
265%{_bindir}/gvfs-rm
266%{_bindir}/gvfs-save
267%{_bindir}/gvfs-set-attribute
268%{_bindir}/gvfs-trash
269%{_bindir}/gvfs-tree
270%{_mandir}/man1/gvfs-cat.1.gz
271%{_mandir}/man1/gvfs-copy.1.gz
272%{_mandir}/man1/gvfs-info.1.gz
273%{_mandir}/man1/gvfs-less.1.gz
274%{_mandir}/man1/gvfs-ls.1.gz
275%{_mandir}/man1/gvfs-mime.1.gz
276%{_mandir}/man1/gvfs-mkdir.1.gz
277%{_mandir}/man1/gvfs-monitor-dir.1.gz
278%{_mandir}/man1/gvfs-monitor-file.1.gz
279%{_mandir}/man1/gvfs-mount.1.gz
280%{_mandir}/man1/gvfs-move.1.gz
281%{_mandir}/man1/gvfs-open.1.gz
282%{_mandir}/man1/gvfs-rename.1.gz
283%{_mandir}/man1/gvfs-rm.1.gz
284%{_mandir}/man1/gvfs-save.1.gz
285%{_mandir}/man1/gvfs-set-attribute.1.gz
286%{_mandir}/man1/gvfs-trash.1.gz
287%{_mandir}/man1/gvfs-tree.1.gz
288%{_mandir}/man1/gvfsd-metadata.1.gz
289%{_mandir}/man1/gvfsd.1.gz
290%{_mandir}/man7/gvfs.7.gz
291
292%files devel
293%defattr(-, root, root, -)
294%dir %{_includedir}/gvfs-client
295%dir %{_includedir}/gvfs-client/gvfs
296%{_includedir}/gvfs-client/gvfs/gvfsurimapper.h
297%{_includedir}/gvfs-client/gvfs/gvfsuriutils.h
298
299%files fuse
300%defattr(-, root, root, -)
301%{_libexecdir}/gvfsd-fuse
302%{_mandir}/man1/gvfsd-fuse.1.gz
303
304%files smb
305%defattr(-, root, root, -)
306%{_libexecdir}/gvfsd-smb
307%{_libexecdir}/gvfsd-smb-browse
308%{_datadir}/gvfs/mounts/smb-browse.mount
309%{_datadir}/gvfs/mounts/smb.mount
310%{_datadir}/GConf/gsettings/gvfs-smb.convert
311%{_datadir}/glib-2.0/schemas/org.gnome.system.smb.gschema.xml
312
313%files archive
314%defattr(-, root, root, -)
315%{_datadir}/applications/mount-archive.desktop
316%{_libexecdir}/gvfsd-archive
317%{_datadir}/gvfs/mounts/archive.mount
318
319%files gphoto2
320%defattr(-, root, root, -)
321%{_libexecdir}/gvfsd-gphoto2
322%{_datadir}/gvfs/mounts/gphoto2.mount
323%{_libexecdir}/gvfs-gphoto2-volume-monitor
324%{_datadir}/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service
325%{_datadir}/gvfs/remote-volume-monitors/gphoto2.monitor
326
327%files afc
328%defattr(-, root, root, -)
329%{_libexecdir}/gvfsd-afc
330%{_datadir}/gvfs/mounts/afc.mount
331%{_libexecdir}/gvfs-afc-volume-monitor
332%{_datadir}/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service
333%{_datadir}/gvfs/remote-volume-monitors/afc.monitor
334
335%files mtp
336%defattr(-, root, root, -)
337%{_libexecdir}/gvfsd-mtp
338%{_datadir}/gvfs/mounts/mtp.mount
339%{_libexecdir}/gvfs-mtp-volume-monitor
340%{_datadir}/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service
341%{_datadir}/gvfs/remote-volume-monitors/mtp.monitor
342
343%files goa
344%defattr(-, root, root, -)
345%{_libexecdir}/gvfs-goa-volume-monitor
346%{_datadir}/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service
347%{_datadir}/gvfs/remote-volume-monitors/goa.monitor
348
349
350%changelog
351* Fri Nov 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.26.2-1
352- new upstream release
353
354* Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.26.0-1
355- new upstream release
356- add BuildRequires: gcr-devel
357
358* Sun Aug 30 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.24.2-1
359- new upstream release
360
361* Thu May 21 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.24.1-2
362- rebuilt with libimobiledevice 1.2.0
363
364* Sun Apr 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.24.1-1
365- new upstream release
366
367* Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.24.0-1
368- new upstream release
369- remove %%{name}-obexftp subpackage
370
371* Mon Feb 09 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.3-2
372- rebuild with libgphoto2-2.5.7
373
374* Mon Jan 12 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.3-1
375- new upstream release
376
377* Wed Nov 19 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.2-1
378- new upstream release
379
380* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.1-1
381- new upstream release
382
383* Sun Aug 31 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.3-1
384- new upstream release
385
386* Sun Jul 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-5
387- change BuildRequires: libcdio-paranoia-devel instead of libcdio-devel
388
389* Wed Jul 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-4
390- rebuild with libplist-1.11
391
392* Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-3
393- rebuild with libarchive-3.1.2
394
395* Tue Jun 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-2
396- change BuildRequires: eudev-libgudev1-devel instead of libgudev1-devel
397
398* Sat May 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-1
399- new upstream release
400
401* Sun Apr 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.1-1
402- new upstream release
403
404* Sun Mar 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.0-1
405- new upstream release
406
407* Thu Feb 20 2014 NAKAMURA Kenta <kenta@vinelinux.org> 1.18.3-2
408- rebuilt with libgcrypt-1.6
409
410* Sat Nov 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.3-1
411- new upstream release
412
413* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.2-1
414- new upstream release
415
416* Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.3-1
417- new upstream release
418
419* Sun May 19 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.2-1
420- new upstream release
421
422* Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.1-1
423- new upstream release
424- update Patch1 (gvfs-1.16.0-archive-integration.patch)
425- add BuildRequires: libmtp-devel, gnome-online-accounts
426- create %%{name}-mtp and %%{name}-goa subpackages
427
428* Sun Mar 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.2-3
429- rebuild with libimobiledevice-1.1.5
430
431* Fri Jan 11 2013 IWAI, Masaharu <iwai@alib.jp> 1.14.2-2
432- build with libgphoto2 2.5.0-1
433
434* Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.2-1
435- new upstream release
436
437* Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.1-1
438- new upstream release
439
440* Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.0-1
441- new upstream release
442- add BuildRequires: libsecret-devel, gtk3-devel
443- remove BuildRequires: GConf2-devel
444
445* Sun Jun 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.3-2
446- rebuild with libarchive-3.0.4
447
448* Sun May 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.3-1
449- new upstream release
450
451* Mon Apr 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.2-1
452- new upstream release
453
454* Sat Apr 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.1-1
455- new upstream release
456- add BuildRequires: udisks2-devel
457- remove BuildRequires: gnome-disk-utility-devel
458
459* Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.1-1
460- new upstream release
461
462* Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.0-1
463- new upstream release
464
465* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.5-1
466- new upstream release
467
468* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.4-1
469- new upstream release
470
471* Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.3-1
472- new upstream release
473
474* Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.2-1
475- new upstream release
476- add Provides: and Obsoletes: gnome-mount
477
478* Thu May 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.7-1
479- new upstream release
480
481* Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.6-1
482- new upstream release
483- drop Patch2
484
485* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.4-2
486- add Patch2 (gvfs-1.6.4-sftp-timeout.patch)
487
488* Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.4-1
489- new upstream release
490
491* Sat Jul 24 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.3-1
492- new upstream release
493
494* Tue Jun 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.2-1
495- new upstream release
496
497* Sat May 22 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.1-3
498- rebuilt with libcdio-0.82
499
500* Wed May 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.1-2
501- add configure option --enable-gdu
502- add BR: gnome-disk-utility-devel
503- add afc subpackage for new AFC backend,
504  providing access to Apple's iPhone, and iPod Touch devices
505
506* Sat May 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.1-1
507- new upstream release
508
509* Sun Apr 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.0-1
510- new upstream release
511- change BuildRequires: gnome-keyring-devel -> libgnome-keyring-devel
512- change BuildRequires: hal-devel -> ibgudev1-devel
513- add configure option (--disable-hal)
514
515* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.3-1
516- new upstream release
517
518* Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.1-1
519- new upstream release
520
521* Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.3-2
522- new upstream release
523
524* Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-1
525- new upstream release
526
527* Sat Apr 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-2
528- new upstream release
529
530* Thu Oct 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-1
531- new upstream release
532- BR: bluez-libs-devel >= 4.15
533
534* Thu Oct 23 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.0.1-2
535- rebuild with bluez-libs-devel-4.15
536
537* Fri Sep 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-1
538- new upstream release
539
540* Mon Sep 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-1
541- new upstream release
542
543* Sat Sep 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.6-1
544- new upstream release
545- split out backends to sub packages
546
547* Thu Jul 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.1-1
548- new upstream release
549
550* Thu Apr 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.2.3-1vl5
551- new upstream release
552
553* Wed Apr  2 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.2.2-1vl5
554- Initial build for Vine Linux
555
556* Fri Mar 28 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.2.2-1
557- Update to 0.2.2
558
559* Tue Mar 25 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.2.1-4
560- Moved fuse stuff to a dedicated package
561
562* Thu Mar 20 2008 Alexander Larsson <alexl@redhat.com> - 0.2.1-3
563- Add patch with simple archive backend UI integration
564
565* Wed Mar 19 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.2.1-2
566- Added libarchive dependency for archive backend
567- Require new libsmbclient in order to get smb backend working again
568
569* Tue Mar 18 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.2.1-1
570- Update to 0.2.1 (archive backend temporarily disabled)
571
572* Mon Mar 17 2008 Matthias Clasen  <mclasen@redhat.com> - 0.2.0.1-2
573- Silence %%post
574
575* Mon Mar 10 2008 Matthias Clasen  <mclasen@redhat.com> - 0.2.0.1-1
576- Update to 0.2.0.1
577
578* Thu Mar  6 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.1.11-2
579- Add patch that fixes a deadlock when foreign volume is removed
580
581* Tue Mar  4 2008 Matthias Clasen  <mclasen@redhat.com> - 0.1.11-1
582- Update to 0.1.11
583
584* Tue Mar 04 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.1.10-1
585- Update to 0.1.10
586
587* Mon Feb 25 2008 Alexander Larsson <alexl@redhat.com> - 0.1.8-1
588- Update to 0.1.8
589
590* Thu Feb 14 2008 Alexander Larsson <alexl@redhat.com> - 0.1.7-3
591- Add patch that fixes a smb bug that can cause short reads when copying files
592
593* Tue Feb 12 2008 Alexander Larsson <alexl@redhat.com> - 0.1.7-2
594- Fix double free in hal volume monitor
595- Ensure gconf module is built by adding build dep
596
597* Mon Feb 11 2008 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
598- Update to 0.1.7
599
600* Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 0.1.6-1
601- Update to 0.1.6
602
603* Mon Jan 28 2008 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1
604- Update to 0.1.5
605- Reenable http/dav
606
607* Mon Jan 21 2008 Alexander Larsson <alexl@redhat.com> - 0.1.4-2
608- Remove the http/dav stuff for now, as we don't have the latest libsoup
609
610* Mon Jan 21 2008 Alexander Larsson <alexl@redhat.com> - 0.1.4-1
611- Update to 0.1.4
612- Send USR1 in post to reload config
613
614* Mon Jan 14 2008 Matthias Clasen <mclasen@redhat.com> 0.1.2-1
615- Update to 0.1.2
616
617* Tue Jan  8 2008 Matthias Clasen <mclasen@redhat.com> 0.1.1-1
618- Update to 0.1.1
619
620* Thu Dec 20 2007 Matthias Clasen <mclasen@redhat.com> 0.1.0-1
621- Initial packaging
Note: See TracBrowser for help on using the repository browser.