libsocialweb-vl.spec 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. Name: libsocialweb
  2. Version: 0.25.21
  3. Release: 3%{?_dist_release}
  4. Summary: A social network data aggregator
  5. Summary(ja): ソーシャルネットワークのデータを集約するためのライブラリ
  6. Group: System Environment/Libraries
  7. License: LGPLv2
  8. URL: http://www.gnome.org/
  9. Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/0.25/%{name}-%{version}.tar.xz
  10. Source1: flickr
  11. Source2: twitter
  12. Source3: lastfm
  13. Source4: twitpic
  14. Source5: facebook
  15. Source6: facebook.key
  16. BuildRequires: dbus-glib-devel
  17. BuildRequires: geoclue-devel
  18. BuildRequires: glib2-devel
  19. BuildRequires: GConf2-devel
  20. BuildRequires: libgnome-keyring-devel
  21. BuildRequires: gobject-introspection-devel
  22. BuildRequires: intltool
  23. BuildRequires: json-glib-devel
  24. BuildRequires: libsoup-devel
  25. BuildRequires: libxslt-devel
  26. BuildRequires: NetworkManager-glib-devel
  27. BuildRequires: rest-devel
  28. BuildRequires: vala
  29. BuildRequires: vala-tools
  30. Requires: %{name}-keys = %{version}-%{release}
  31. Vendor: Vine Linux
  32. Distribution: Vine Linux
  33. Packager: Takemikaduchi
  34. %description
  35. libsocialweb is a social data server which fetches data from the "social web",
  36. such as your friend's blog posts and photos, upcoming events, recently played
  37. tracks, and pending eBay* auctions. It also provides a service to update
  38. your status on web services which support it, such as MySpace* and Twitter*.
  39. %package devel
  40. Summary: Development package for %{name}
  41. Summary(ja): %{name} の開発用ファイル
  42. Group: Development/Libraries
  43. Requires: %{name} = %{version}-%{release}
  44. Requires: pkgconfig
  45. %description devel
  46. Files for development with %{name}.
  47. %package vala
  48. Summary: Vala bindings for %{name}
  49. Summary(ja): %{name} の Vala バインディング
  50. Group: Development/Libraries
  51. Requires: %{name} = %{version}-%{release}
  52. Requires: vala
  53. %description vala
  54. Vala bindings for %{name}.
  55. %package keys
  56. Summary: API keys for %{name}
  57. Summary(ja): %{name} のための API キー
  58. Group: System Environment/Libraries
  59. BuildArch: noarch
  60. Requires: %{name} = %{version}-%{release}
  61. %description keys
  62. Keys allowing access to various web services through libsocialweb.
  63. %prep
  64. %setup -q
  65. chmod 644 examples/*.py
  66. ## nuke unwanted rpaths, see also
  67. ## https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath
  68. sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure
  69. %build
  70. %configure --with-gnome --with-online=networkmanager --disable-static --enable-all-services --enable-vala-bindings
  71. make %{?_smp_mflags} V=1
  72. %install
  73. make install DESTDIR=$RPM_BUILD_ROOT
  74. #Remove libtool archives and static libs.
  75. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  76. find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} ';'
  77. mkdir -p $RPM_BUILD_ROOT%{_datadir}/libsocialweb/keys
  78. cp %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE6} $RPM_BUILD_ROOT%{_datadir}/libsocialweb/keys
  79. %find_lang %{name}
  80. %post -p /sbin/ldconfig
  81. %postun -p /sbin/ldconfig
  82. %files -f %{name}.lang
  83. %defattr(-,root,root,-)
  84. %doc AUTHORS COPYING TODO
  85. %{_libdir}/libsocialweb*.so.*
  86. %{_libdir}/libsocialweb/
  87. %{_libdir}/girepository-1.0/SocialWebClient-0.25.typelib
  88. %dir %{_datadir}/libsocialweb/
  89. %{_datadir}/libsocialweb/services/
  90. %{_datadir}/dbus-1/services/libsocialweb.service
  91. %{_libexecdir}/libsocialweb-core
  92. %files devel
  93. %defattr(-,root,root,-)
  94. %doc tests/*.c examples/*c examples/*.py
  95. %doc %{_datadir}/gtk-doc/html/libsocialweb
  96. %doc %{_datadir}/gtk-doc/html/libsocialweb-client
  97. %doc %{_datadir}/gtk-doc/html/libsocialweb-dbus
  98. %{_includedir}/libsocialweb
  99. %{_libdir}/pkgconfig/libsocialweb*
  100. %{_libdir}/libsocialweb*so
  101. %{_datadir}/gir-1.0/SocialWebClient-0.25.gir
  102. %files vala
  103. %defattr(-,root,root,-)
  104. %{_datadir}/vala/vapi/libsocialweb-client.deps
  105. %{_datadir}/vala/vapi/libsocialweb-client.vapi
  106. %files keys
  107. %defattr(-,root,root,-)
  108. %{_datadir}/libsocialweb/keys
  109. %changelog
  110. * Mon Oct 27 2014 Ryooichi INAGAKI <ryo1@toki.waseda.jp> 0.25.21-3
  111. - moved libsoialweb to System Environment/Libraries Group
  112. - added Japanese summary
  113. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.25.21-2
  114. - rebuild with VineSeed environment
  115. * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.25.21-1
  116. - new upstream release
  117. - create %%{name}-vala subpackage
  118. * Sun Nov 20 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.25.20-1
  119. - new upstream release
  120. * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.25.19-1
  121. - initial build for Vine Linux
  122. * Mon Jul 04 2011 Bastien Nocera <bnocera@redhat.com> 0.25.19-1
  123. - Update to 0.25.19
  124. * Wed Jun 15 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.18-1
  125. - Update to 0.25.18
  126. * Sun May 22 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.17-1
  127. - Update to 0.25.17
  128. * Sun Apr 24 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.16-1
  129. - Update to 0.25.16, update twitter keys
  130. * Mon Apr 11 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.15-1
  131. - Update to 0.25.15, enable gobject-introspection support
  132. * Sun Apr 3 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.14-1
  133. - Update to 0.25.14
  134. * Mon Mar 28 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.13-1
  135. - Update to 0.25.13
  136. * Fri Mar 25 2011 Dan Williams <dcbw@redhat.com> 0.25.12-2
  137. - Update for NetworkManager 0.9
  138. * Wed Mar 23 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.12-1
  139. - Update to 0.25.12
  140. * Tue Feb 22 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.11-2
  141. - add generic facebook api key
  142. * Tue Feb 22 2011 Peter Robinson <pbrobinson@gmail.com> 0.25.11-1
  143. - Update to 0.25.11
  144. - Add support for Facebook, Plurk, Sina, SmugMug, and YouTube.
  145. * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.25.7-2
  146. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  147. * Fri Oct 29 2010 Peter Robinson <pbrobinson@gmail.com> 0.25.7-1
  148. - Update to 0.25.7
  149. - libsocialweb is now hosted at gnome.org so we have real tarfiles
  150. * Mon Sep 27 2010 Peter Robinson <pbrobinson@gmail.com> 0.25.5-1
  151. - Update to 0.25.5
  152. * Wed Sep 22 2010 Peter Robinson <pbrobinson@gmail.com> 0.25.4-1
  153. - Update to 0.25.4
  154. * Tue Sep 7 2010 Peter Robinson <pbrobinson@gmail.com> 0.25.3-2
  155. - Add api key for twitpic
  156. * Mon Aug 30 2010 Peter Robinson <pbrobinson@gmail.com> 0.25.3-1
  157. - Update to 0.25.3, MySpace and Digg are obsolete upstream
  158. * Thu Aug 26 2010 Bastien Nocera <bnocera@redhat.com> 0.25.1-2
  159. - Add API keys to the -keys sub-package
  160. * Sat Aug 7 2010 Peter Robinson <pbrobinson@gmail.com> 0.25.1-1
  161. - Update to 0.25.1, disable MySpace and Digg until they build again
  162. * Sun Jul 11 2010 Peter Robinson <pbrobinson@gmail.com> 0.24.9-1
  163. - Update to 0.24.9
  164. * Wed May 12 2010 Peter Robinson <pbrobinson@gmail.com> 0.24.8-1
  165. - rename package from mojito to libsocialweb
  166. - Update to 0.24.8
  167. * Mon Jan 25 2010 Peter Robinson <pbrobinson@gmail.com> 0.22.1-1
  168. - Update to 0.22.1
  169. * Mon Jan 25 2010 Peter Robinson <pbrobinson@gmail.com> 0.22.0-2
  170. - Add upstream patch to fix crash
  171. * Tue Jan 12 2010 Peter Robinson <pbrobinson@gmail.com> 0.22.0-1
  172. - New major upstream 0.22.0 release
  173. * Wed Dec 2 2009 Peter Robinson <pbrobinson@gmail.com> 0.21.7-1
  174. - Update to 0.21.7
  175. * Thu Nov 19 2009 Peter Robinson <pbrobinson@gmail.com> 0.21.6-1
  176. - Update to 0.21.6, move to the official tarball release
  177. * Mon Oct 26 2009 Peter Robinson <pbrobinson@gmail.com> 0.21.5-1
  178. - Update to 0.21.5
  179. * Wed Oct 21 2009 Peter Robinson <pbrobinson@gmail.com> 0.21.4-2
  180. - enable digg support
  181. * Wed Oct 21 2009 Peter Robinson <pbrobinson@gmail.com> 0.21.4-1
  182. - Update to 0.21.4
  183. * Sat Oct 10 2009 Peter Robinson <pbrobinson@gmail.com> 0.21.3-1
  184. - Update to 0.21.3
  185. * Fri Oct 2 2009 Peter Robinson <pbrobinson@gmail.com> 0.21.2-1
  186. - Update to 0.21.2
  187. * Tue Sep 15 2009 Peter Robinson <pbrobinson@gmail.com> 0.21.1-1
  188. - Update to 0.21.1
  189. * Thu Sep 3 2009 Peter Robinson <pbrobinson@gmail.com> 0.20.1-1
  190. - Update to 0.20.1
  191. * Mon Aug 31 2009 Peter Robinson <pbrobinson@gmail.com> 0.20-5
  192. - Actually commit patch for detection of new NetworkManager
  193. * Mon Aug 31 2009 Peter Robinson <pbrobinson@gmail.com> 0.20-4
  194. - Add patch for detection of new NetworkManager
  195. * Mon Aug 31 2009 Peter Robinson <pbrobinson@gmail.com> 0.20-3
  196. - Rebuild for new NetworkManager
  197. * Sat Aug 22 2009 Peter Robinson <pbrobinson@gmail.com> 0.20-2
  198. - Enable twitter, lastfm, MySpace and Flickr networks
  199. * Wed Aug 19 2009 Peter Robinson <pbrobinson@gmail.com> 0.20-1
  200. - Update to 0.20
  201. * Wed Aug 5 2009 Peter Robinson <pbrobinson@gmail.com> 0.19.2-2
  202. - A few minor spec file cleanups
  203. * Wed Aug 5 2009 Peter Robinson <pbrobinson@gmail.com> 0.19.2-1
  204. - Update to 0.19.2 - updated translations
  205. * Tue Jul 28 2009 Peter Robinson <pbrobinson@gmail.com> 0.19.1-1
  206. - Update to 0.19.1 - updated translations
  207. * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19-2
  208. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  209. * Sat Jul 18 2009 Peter Robinson <pbrobinson@gmail.com> 0.19-1
  210. - Update to 0.19
  211. * Mon Jul 6 2009 Peter Robinson <pbrobinson@gmail.com> 0.18.1-1
  212. - Update to 0.18.1
  213. * Mon Jul 6 2009 Peter Robinson <pbrobinson@gmail.com> 0.17-3
  214. - Add some additional buildreqs
  215. * Mon Jul 6 2009 Peter Robinson <pbrobinson@gmail.com> 0.17-2
  216. - Add some additional buildreqs
  217. * Mon Jul 6 2009 Peter Robinson <pbrobinson@gmail.com> 0.17-1
  218. - Update to new 0.17 release, add language support and more backends
  219. * Wed Jun 17 2009 Peter Robinson <pbrobinson@gmail.com> 0.10.3-2
  220. - Add extra build deps
  221. * Wed Jun 17 2009 Peter Robinson <pbrobinson@gmail.com> 0.10.3-1
  222. - Initial packaging