gvfs-vl.spec 15 KB

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