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

Revision 10504, 18.3 KB checked in by tomop, 8 years ago (diff)

gvfs-1.26.3-1

Line 
1Summary: Backends for the gio framework in GLib
2Summary(ja): GLib の GIO フレームワークのバックエンド
3Name: gvfs
4Version: 1.26.3
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  || :
152autoreconf -i -f
153#aclocal  || :
154#autoheader  || :
155#automake  || :
156#autoconf  || :
157
158%configure \
159        --disable-hal \
160        --disable-gdu \
161        --disable-nfs \
162        --enable-mtp \
163        --disable-libsystemd-login
164make # %{?_smp_mflags}
165
166%install
167rm -rf $RPM_BUILD_ROOT
168make install DESTDIR=$RPM_BUILD_ROOT
169
170find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
171rm -rf $RPM_BUILD_ROOT%{_prefix}/lib/systemd
172
173%find_lang gvfs
174
175%clean
176rm -rf $RPM_BUILD_ROOT
177
178%post
179/sbin/ldconfig
180# Reload .mount files:
181killall -USR1 gvfsd >&/dev/null || :
182# Update desktop files mime mappings:
183update-desktop-database &> /dev/null ||:
184update-gio-modules "$host" &> /dev/null || :
185
186%postun
187/sbin/ldconfig
188# Update desktop files mime mappings:
189update-desktop-database &> /dev/null ||:
190update-gio-modules "$host" &> /dev/null || :
191
192# Reload .mount files when single subpackage is installed:
193%post smb
194killall -USR1 gvfsd >&/dev/null || :
195%post archive
196killall -USR1 gvfsd >&/dev/null || :
197%post gphoto2
198killall -USR1 gvfsd >&/dev/null || :
199%post afc
200killall -USR1 gvfsd >&/dev/null || :
201
202
203%files -f gvfs.lang
204%defattr(-, root, root, -)
205%doc AUTHORS COPYING NEWS README
206%dir %{_datadir}/gvfs
207%dir %{_datadir}/gvfs/mounts
208%{_datadir}/bash-completion/completions/gvfs-*
209%{_datadir}/gvfs/mounts/afp.mount
210%{_datadir}/gvfs/mounts/afp-browse.mount
211%{_datadir}/gvfs/mounts/sftp.mount
212%{_datadir}/gvfs/mounts/trash.mount
213%{_datadir}/gvfs/mounts/cdda.mount
214%{_datadir}/gvfs/mounts/computer.mount
215%{_datadir}/gvfs/mounts/dav.mount
216%{_datadir}/gvfs/mounts/dav+sd.mount
217%{_datadir}/gvfs/mounts/http.mount
218%{_datadir}/gvfs/mounts/localtest.mount
219%{_datadir}/gvfs/mounts/burn.mount
220%{_datadir}/gvfs/mounts/dns-sd.mount
221%{_datadir}/gvfs/mounts/network.mount
222%{_datadir}/gvfs/mounts/ftp.mount
223%{_datadir}/gvfs/mounts/ftps.mount
224%{_datadir}/gvfs/mounts/recent.mount
225%{_datadir}/dbus-1/services/org.gtk.vfs.UDisks2VolumeMonitor.service
226%{_datadir}/dbus-1/services/org.gtk.vfs.Daemon.service
227%{_datadir}/dbus-1/services/org.gtk.vfs.Metadata.service
228%{_datadir}/gvfs/remote-volume-monitors/udisks2.monitor
229%{_datadir}/GConf/gsettings/gvfs-dns-sd.convert
230%{_datadir}/glib-2.0/schemas/org.gnome.system.dns_sd.gschema.xml
231%{_datadir}/glib-2.0/schemas/org.gnome.system.gvfs.enums.xml
232%{_libdir}/gio/modules/libgioremote-volume-monitor.so
233%{_libdir}/gio/modules/libgvfsdbus.so
234%{_libdir}/%{name}/libgvfscommon.so
235%{_libdir}/%{name}/libgvfsdaemon.so
236%{_libexecdir}/gvfsd
237%{_libexecdir}/gvfsd-afp
238%{_libexecdir}/gvfsd-afp-browse
239%{_libexecdir}/gvfsd-ftp
240%{_libexecdir}/gvfsd-sftp
241%{_libexecdir}/gvfsd-trash
242%{_libexecdir}/gvfsd-cdda
243%{_libexecdir}/gvfsd-computer
244%{_libexecdir}/gvfsd-dav
245%{_libexecdir}/gvfsd-http
246%{_libexecdir}/gvfsd-localtest
247%{_libexecdir}/gvfsd-burn
248%{_libexecdir}/gvfsd-dnssd
249%{_libexecdir}/gvfsd-network
250%{_libexecdir}/gvfsd-metadata
251%{_libexecdir}/gvfsd-recent
252%{_libexecdir}/gvfs-udisks2-volume-monitor
253%{_bindir}/gvfs-cat
254%{_bindir}/gvfs-copy
255%{_bindir}/gvfs-info
256%{_bindir}/gvfs-less
257%{_bindir}/gvfs-ls
258%{_bindir}/gvfs-mime
259%{_bindir}/gvfs-mkdir
260%{_bindir}/gvfs-monitor-dir
261%{_bindir}/gvfs-monitor-file
262%{_bindir}/gvfs-mount
263%{_bindir}/gvfs-move
264%{_bindir}/gvfs-open
265%{_bindir}/gvfs-rename
266%{_bindir}/gvfs-rm
267%{_bindir}/gvfs-save
268%{_bindir}/gvfs-set-attribute
269%{_bindir}/gvfs-trash
270%{_bindir}/gvfs-tree
271%{_mandir}/man1/gvfs-cat.1.gz
272%{_mandir}/man1/gvfs-copy.1.gz
273%{_mandir}/man1/gvfs-info.1.gz
274%{_mandir}/man1/gvfs-less.1.gz
275%{_mandir}/man1/gvfs-ls.1.gz
276%{_mandir}/man1/gvfs-mime.1.gz
277%{_mandir}/man1/gvfs-mkdir.1.gz
278%{_mandir}/man1/gvfs-monitor-dir.1.gz
279%{_mandir}/man1/gvfs-monitor-file.1.gz
280%{_mandir}/man1/gvfs-mount.1.gz
281%{_mandir}/man1/gvfs-move.1.gz
282%{_mandir}/man1/gvfs-open.1.gz
283%{_mandir}/man1/gvfs-rename.1.gz
284%{_mandir}/man1/gvfs-rm.1.gz
285%{_mandir}/man1/gvfs-save.1.gz
286%{_mandir}/man1/gvfs-set-attribute.1.gz
287%{_mandir}/man1/gvfs-trash.1.gz
288%{_mandir}/man1/gvfs-tree.1.gz
289%{_mandir}/man1/gvfsd-metadata.1.gz
290%{_mandir}/man1/gvfsd.1.gz
291%{_mandir}/man7/gvfs.7.gz
292
293%files devel
294%defattr(-, root, root, -)
295%dir %{_includedir}/gvfs-client
296%dir %{_includedir}/gvfs-client/gvfs
297%{_includedir}/gvfs-client/gvfs/gvfsurimapper.h
298%{_includedir}/gvfs-client/gvfs/gvfsuriutils.h
299
300%files fuse
301%defattr(-, root, root, -)
302%{_libexecdir}/gvfsd-fuse
303%{_mandir}/man1/gvfsd-fuse.1.gz
304
305%files smb
306%defattr(-, root, root, -)
307%{_libexecdir}/gvfsd-smb
308%{_libexecdir}/gvfsd-smb-browse
309%{_datadir}/gvfs/mounts/smb-browse.mount
310%{_datadir}/gvfs/mounts/smb.mount
311%{_datadir}/GConf/gsettings/gvfs-smb.convert
312%{_datadir}/glib-2.0/schemas/org.gnome.system.smb.gschema.xml
313
314%files archive
315%defattr(-, root, root, -)
316%{_datadir}/applications/mount-archive.desktop
317%{_libexecdir}/gvfsd-archive
318%{_datadir}/gvfs/mounts/archive.mount
319
320%files gphoto2
321%defattr(-, root, root, -)
322%{_libexecdir}/gvfsd-gphoto2
323%{_datadir}/gvfs/mounts/gphoto2.mount
324%{_libexecdir}/gvfs-gphoto2-volume-monitor
325%{_datadir}/dbus-1/services/org.gtk.vfs.GPhoto2VolumeMonitor.service
326%{_datadir}/gvfs/remote-volume-monitors/gphoto2.monitor
327
328%files afc
329%defattr(-, root, root, -)
330%{_libexecdir}/gvfsd-afc
331%{_datadir}/gvfs/mounts/afc.mount
332%{_libexecdir}/gvfs-afc-volume-monitor
333%{_datadir}/dbus-1/services/org.gtk.vfs.AfcVolumeMonitor.service
334%{_datadir}/gvfs/remote-volume-monitors/afc.monitor
335
336%files mtp
337%defattr(-, root, root, -)
338%{_libexecdir}/gvfsd-mtp
339%{_datadir}/gvfs/mounts/mtp.mount
340%{_libexecdir}/gvfs-mtp-volume-monitor
341%{_datadir}/dbus-1/services/org.gtk.vfs.MTPVolumeMonitor.service
342%{_datadir}/gvfs/remote-volume-monitors/mtp.monitor
343
344%files goa
345%defattr(-, root, root, -)
346%{_libexecdir}/gvfs-goa-volume-monitor
347%{_datadir}/dbus-1/services/org.gtk.vfs.GoaVolumeMonitor.service
348%{_datadir}/gvfs/remote-volume-monitors/goa.monitor
349
350
351%changelog
352* Sat Jul  2 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.26.3-1
353- new upstream release.
354
355* Fri Nov 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.26.2-1
356- new upstream release
357
358* Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.26.0-1
359- new upstream release
360- add BuildRequires: gcr-devel
361
362* Sun Aug 30 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.24.2-1
363- new upstream release
364
365* Thu May 21 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.24.1-2
366- rebuilt with libimobiledevice 1.2.0
367
368* Sun Apr 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.24.1-1
369- new upstream release
370
371* Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.24.0-1
372- new upstream release
373- remove %%{name}-obexftp subpackage
374
375* Mon Feb 09 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.3-2
376- rebuild with libgphoto2-2.5.7
377
378* Mon Jan 12 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.3-1
379- new upstream release
380
381* Wed Nov 19 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.2-1
382- new upstream release
383
384* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.22.1-1
385- new upstream release
386
387* Sun Aug 31 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.3-1
388- new upstream release
389
390* Sun Jul 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-5
391- change BuildRequires: libcdio-paranoia-devel instead of libcdio-devel
392
393* Wed Jul 09 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-4
394- rebuild with libplist-1.11
395
396* Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-3
397- rebuild with libarchive-3.1.2
398
399* Tue Jun 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-2
400- change BuildRequires: eudev-libgudev1-devel instead of libgudev1-devel
401
402* Sat May 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.2-1
403- new upstream release
404
405* Sun Apr 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.1-1
406- new upstream release
407
408* Sun Mar 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.20.0-1
409- new upstream release
410
411* Thu Feb 20 2014 NAKAMURA Kenta <kenta@vinelinux.org> 1.18.3-2
412- rebuilt with libgcrypt-1.6
413
414* Sat Nov 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.3-1
415- new upstream release
416
417* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18.2-1
418- new upstream release
419
420* Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.3-1
421- new upstream release
422
423* Sun May 19 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.2-1
424- new upstream release
425
426* Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.16.1-1
427- new upstream release
428- update Patch1 (gvfs-1.16.0-archive-integration.patch)
429- add BuildRequires: libmtp-devel, gnome-online-accounts
430- create %%{name}-mtp and %%{name}-goa subpackages
431
432* Sun Mar 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.2-3
433- rebuild with libimobiledevice-1.1.5
434
435* Fri Jan 11 2013 IWAI, Masaharu <iwai@alib.jp> 1.14.2-2
436- build with libgphoto2 2.5.0-1
437
438* Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.2-1
439- new upstream release
440
441* Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.1-1
442- new upstream release
443
444* Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.0-1
445- new upstream release
446- add BuildRequires: libsecret-devel, gtk3-devel
447- remove BuildRequires: GConf2-devel
448
449* Sun Jun 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.3-2
450- rebuild with libarchive-3.0.4
451
452* Sun May 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.3-1
453- new upstream release
454
455* Mon Apr 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.2-1
456- new upstream release
457
458* Sat Apr 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.1-1
459- new upstream release
460- add BuildRequires: udisks2-devel
461- remove BuildRequires: gnome-disk-utility-devel
462
463* Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.1-1
464- new upstream release
465
466* Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.0-1
467- new upstream release
468
469* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.5-1
470- new upstream release
471
472* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.4-1
473- new upstream release
474
475* Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.3-1
476- new upstream release
477
478* Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9.2-1
479- new upstream release
480- add Provides: and Obsoletes: gnome-mount
481
482* Thu May 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.7-1
483- new upstream release
484
485* Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.6-1
486- new upstream release
487- drop Patch2
488
489* Sun Oct 17 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.4-2
490- add Patch2 (gvfs-1.6.4-sftp-timeout.patch)
491
492* Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.4-1
493- new upstream release
494
495* Sat Jul 24 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.3-1
496- new upstream release
497
498* Tue Jun 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.2-1
499- new upstream release
500
501* Sat May 22 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.1-3
502- rebuilt with libcdio-0.82
503
504* Wed May 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.1-2
505- add configure option --enable-gdu
506- add BR: gnome-disk-utility-devel
507- add afc subpackage for new AFC backend,
508  providing access to Apple's iPhone, and iPod Touch devices
509
510* Sat May 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.1-1
511- new upstream release
512
513* Sun Apr 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.0-1
514- new upstream release
515- change BuildRequires: gnome-keyring-devel -> libgnome-keyring-devel
516- change BuildRequires: hal-devel -> ibgudev1-devel
517- add configure option (--disable-hal)
518
519* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.3-1
520- new upstream release
521
522* Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.1-1
523- new upstream release
524
525* Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.3-2
526- new upstream release
527
528* Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-1
529- new upstream release
530
531* Sat Apr 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-2
532- new upstream release
533
534* Thu Oct 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-1
535- new upstream release
536- BR: bluez-libs-devel >= 4.15
537
538* Thu Oct 23 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.0.1-2
539- rebuild with bluez-libs-devel-4.15
540
541* Fri Sep 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-1
542- new upstream release
543
544* Mon Sep 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-1
545- new upstream release
546
547* Sat Sep 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.6-1
548- new upstream release
549- split out backends to sub packages
550
551* Thu Jul 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.1-1
552- new upstream release
553
554* Thu Apr 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.2.3-1vl5
555- new upstream release
556
557* Wed Apr  2 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.2.2-1vl5
558- Initial build for Vine Linux
559
560* Fri Mar 28 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.2.2-1
561- Update to 0.2.2
562
563* Tue Mar 25 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.2.1-4
564- Moved fuse stuff to a dedicated package
565
566* Thu Mar 20 2008 Alexander Larsson <alexl@redhat.com> - 0.2.1-3
567- Add patch with simple archive backend UI integration
568
569* Wed Mar 19 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.2.1-2
570- Added libarchive dependency for archive backend
571- Require new libsmbclient in order to get smb backend working again
572
573* Tue Mar 18 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.2.1-1
574- Update to 0.2.1 (archive backend temporarily disabled)
575
576* Mon Mar 17 2008 Matthias Clasen  <mclasen@redhat.com> - 0.2.0.1-2
577- Silence %%post
578
579* Mon Mar 10 2008 Matthias Clasen  <mclasen@redhat.com> - 0.2.0.1-1
580- Update to 0.2.0.1
581
582* Thu Mar  6 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.1.11-2
583- Add patch that fixes a deadlock when foreign volume is removed
584
585* Tue Mar  4 2008 Matthias Clasen  <mclasen@redhat.com> - 0.1.11-1
586- Update to 0.1.11
587
588* Tue Mar 04 2008 Tomas Bzatek <tbzatek@redhat.com> - 0.1.10-1
589- Update to 0.1.10
590
591* Mon Feb 25 2008 Alexander Larsson <alexl@redhat.com> - 0.1.8-1
592- Update to 0.1.8
593
594* Thu Feb 14 2008 Alexander Larsson <alexl@redhat.com> - 0.1.7-3
595- Add patch that fixes a smb bug that can cause short reads when copying files
596
597* Tue Feb 12 2008 Alexander Larsson <alexl@redhat.com> - 0.1.7-2
598- Fix double free in hal volume monitor
599- Ensure gconf module is built by adding build dep
600
601* Mon Feb 11 2008 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
602- Update to 0.1.7
603
604* Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 0.1.6-1
605- Update to 0.1.6
606
607* Mon Jan 28 2008 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1
608- Update to 0.1.5
609- Reenable http/dav
610
611* Mon Jan 21 2008 Alexander Larsson <alexl@redhat.com> - 0.1.4-2
612- Remove the http/dav stuff for now, as we don't have the latest libsoup
613
614* Mon Jan 21 2008 Alexander Larsson <alexl@redhat.com> - 0.1.4-1
615- Update to 0.1.4
616- Send USR1 in post to reload config
617
618* Mon Jan 14 2008 Matthias Clasen <mclasen@redhat.com> 0.1.2-1
619- Update to 0.1.2
620
621* Tue Jan  8 2008 Matthias Clasen <mclasen@redhat.com> 0.1.1-1
622- Update to 0.1.1
623
624* Thu Dec 20 2007 Matthias Clasen <mclasen@redhat.com> 0.1.0-1
625- Initial packaging
Note: See TracBrowser for help on using the repository browser.