gvfs-vl.spec 16 KB

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