at-spi2-core-vl.spec 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. %bcond_with firstbuild
  2. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  3. Name: at-spi2-core
  4. Version: 2.20.2
  5. Release: 1%{?_dist_release}
  6. Summary: Protocol definitions and daemon for D-Bus at-spi
  7. Group: System Environment/Libraries
  8. License: LGPLv2+
  9. URL: http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
  10. Source0: http://download.gnome.org/sources/at-spi2-core/2.20/%{name}-%{version}.tar.xz
  11. BuildRequires: dbus-devel
  12. BuildRequires: dbus-glib-devel
  13. BuildRequires: glib2-devel
  14. %{!?with_firstbuild:BuildRequires: gobject-introspection-devel}
  15. BuildRequires: libXtst-devel
  16. BuildRequires: libXevie-devel
  17. BuildRequires: libXext-devel
  18. BuildRequires: libXi-devel
  19. BuildRequires: libSM-devel
  20. BuildRequires: autoconf automake libtool
  21. BuildRequires: intltool
  22. BuildRequires: gtk-doc
  23. %{!?with_firstbuild:BuildRequires: at-spi2-core-devel}
  24. Requires: dbus
  25. Vendor: Project Vine
  26. Distribution: Vine Linux
  27. Packager: Takemikaduchi
  28. %description
  29. at-spi allows assistive technologies to access GTK-based
  30. applications. Essentially it exposes the internals of applications for
  31. automation, so tools such as screen readers, magnifiers, or even
  32. scripting interfaces can query and interact with GUI controls.
  33. This version of at-spi is a major break from previous versions.
  34. It has been completely rewritten to use D-Bus rather than
  35. ORBIT / CORBA for its transport protocol.
  36. %package devel
  37. Summary: Development files and headers for at-spi2-core
  38. Group: Development/Libraries
  39. Requires: %{name} = %{version}-%{release}
  40. %description devel
  41. The at-spi2-core-devel package includes the header files and
  42. API documentation for libatspi.
  43. # compat32
  44. %package -n compat32-%{name}
  45. Summary: Protocol definitions and daemon for D-Bus at-spi
  46. Group: System Environment/Libraries
  47. Requires: %{name} = %{version}-%{release}
  48. %description -n compat32-%{name}
  49. at-spi allows assistive technologies to access GTK-based
  50. applications. Essentially it exposes the internals of applications for
  51. automation, so tools such as screen readers, magnifiers, or even
  52. scripting interfaces can query and interact with GUI controls.
  53. This version of at-spi is a major break from previous versions.
  54. It has been completely rewritten to use D-Bus rather than
  55. ORBIT / CORBA for its transport protocol.
  56. %package -n compat32-%{name}-devel
  57. Summary: Development files and headers for at-spi2-core
  58. Group: Development/Libraries
  59. Requires: compat32-%{name} = %{version}-%{release}
  60. Requires: %{name}-devel = %{version}-%{release}
  61. %description -n compat32-%{name}-devel
  62. The at-spi2-core-devel package includes the header files and
  63. API documentation for libatspi.
  64. %prep
  65. %setup -q
  66. %build
  67. %configure %{?with_firstbuild:--disable-introspection} \
  68. --with-dbus-daemondir=/bin
  69. make %{?_smp_mflags}
  70. %install
  71. make install DESTDIR=$RPM_BUILD_ROOT
  72. %{find_lang} %{name}
  73. rm $RPM_BUILD_ROOT%{_libdir}/libatspi.la
  74. rm -rf $RPM_BUILD_ROOT%{_prefix}/lib/systemd
  75. %post -p /sbin/ldconfig
  76. %postun -p /sbin/ldconfig
  77. %post -n compat32-%{name} -p /sbin/ldconfig
  78. %postun -n compat32-%{name} -p /sbin/ldconfig
  79. %files -f %{name}.lang
  80. %doc COPYING AUTHORS README
  81. %{_libexecdir}/at-spi2-registryd
  82. %{_sysconfdir}/xdg/autostart/at-spi-dbus-bus.desktop
  83. %{_libdir}/libatspi.so.*
  84. %{!?with_firstbuild:%{_libdir}/girepository-1.0/Atspi-2.0.typelib}
  85. %{_libexecdir}/at-spi-bus-launcher
  86. %{_datadir}/dbus-1/accessibility-services/org.a11y.atspi.Registry.service
  87. %{_datadir}/dbus-1/services/org.a11y.Bus.service
  88. %{_datadir}/defaults/at-spi2/accessibility.conf
  89. %files devel
  90. %{_libdir}/libatspi.so
  91. %{_datadir}/gtk-doc/html/libatspi
  92. %{!?with_firstbuild:%{_datadir}/gir-1.0/Atspi-2.0.gir}
  93. %{_includedir}/at-spi-2.0
  94. %{_libdir}/pkgconfig/atspi-2.pc
  95. # compat32
  96. %if %{build_compat32}
  97. %files -n compat32-%{name}
  98. %defattr(-,root,root,-)
  99. %{_libdir}/libatspi.so.*
  100. %files -n compat32-%{name}-devel
  101. %defattr(-,root,root,-)
  102. %{_libdir}/libatspi.so
  103. %endif
  104. %changelog
  105. * Thu Jul 14 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.20.2-1
  106. - new upstream release
  107. * Fri Nov 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.3-1
  108. - new upstream release
  109. * Thu Oct 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.1-1
  110. - new upstream release
  111. * Sat Mar 28 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.16.0-1
  112. - new upstream release
  113. * Sun Nov 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.1-1
  114. - new upstream release
  115. * Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.0-1
  116. - new upstream release
  117. * Fri Mar 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.12.0-1
  118. - new upstream release
  119. * Sun Nov 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.2-1
  120. - new upstream release
  121. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.1-1
  122. - new upstream release
  123. * Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.0-1
  124. - new upstream release
  125. * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.3-1
  126. - new upstream release
  127. * Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.2-1
  128. - new upstream release
  129. * Wed Oct 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.1-1
  130. - new upstream release
  131. * Sat Oct 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-2
  132. - create compat32 sub packages
  133. * Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
  134. - new upstream release
  135. * Sun May 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.2-1
  136. - new upstream release
  137. * Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.1-1
  138. - new upstream release
  139. * Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.2-1
  140. - new upstream release
  141. * Fri Oct 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.1-1
  142. - new upstream release
  143. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
  144. - new upstream release
  145. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.92-1
  146. - initial build for Vine Linux
  147. * Tue Sep 6 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.91-1
  148. - Update to 2.1.91
  149. * Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.4-1
  150. - Update to 2.1.4
  151. * Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.2-1
  152. - Update to 2.1.2
  153. * Wed May 11 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.1-1
  154. - Update to 2.1.1
  155. * Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.1-1
  156. - Update to 2.0.1
  157. * Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.0-1
  158. - Update to 2.0.0
  159. * Fri Apr 1 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.93-2
  160. - Fix 30 second wait during login (#691995)
  161. * Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.93-1
  162. - Update to 1.91.93
  163. * Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.92-1
  164. - Update to 2.91.92
  165. * Wed Mar 9 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.91-2
  166. - Fix a crash on logout
  167. * Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.91-1
  168. - Update to 1.91.91
  169. * Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.90-1
  170. - Update to 1.91.90
  171. * Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6.1-2
  172. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  173. * Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6.1-1
  174. - Update to 1.91.6.1
  175. * Tue Feb 1 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1
  176. - Update to 1.91.6
  177. * Fri Jan 21 2011 Christopher Aillon <caillon@redhat.com> - 1.91.5-2
  178. - Add gobject-introspection support
  179. * Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1
  180. - Update to 1.91.5
  181. * Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.2-1
  182. - Update 1.91.2
  183. * Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1
  184. - Update to 1.91.0
  185. * Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1
  186. - Update to 0.4.0
  187. * Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91-1
  188. - Update to 0.3.91
  189. * Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
  190. - Update to 0.3.90
  191. * Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.4-1
  192. - Update to 0.3.4
  193. * Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.3-1
  194. - Update to 0.3.3
  195. * Tue Jun 1 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-2
  196. - Don't relocate the dbus a11y stack
  197. * Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
  198. - Update to 0.3.2
  199. * Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1-1
  200. - Update to 0.3.1
  201. * Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1
  202. - Update to 0.1.8
  203. * Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
  204. - Update to 0.1.7
  205. * Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1
  206. - Update to 0.1.6
  207. * Wed Jan 20 2010 Matthias Clasen <mlasen@redhat.com> - 0.1.5-2
  208. - Specify the right location for the dbus daemon
  209. * Sat Jan 16 2010 Matthias Clasen <mlasen@redhat.com> - 0.1.5-1
  210. - Update to 0.1.5
  211. * Tue Dec 22 2009 Matthias Clasen <mlasen@redhat.com> - 0.1.4-1
  212. - Update to 0.1.4
  213. * Fri Dec 4 2009 Matthias Clasen <mlasen@redhat.com> - 0.1.3-1
  214. - Initial packaging