at-spi2-core-vl.spec 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. %bcond_with firstbuild
  2. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  3. Name: at-spi2-core
  4. Version: 2.18.1
  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.18/%{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. %post -p /sbin/ldconfig
  75. %postun -p /sbin/ldconfig
  76. %post -n compat32-%{name} -p /sbin/ldconfig
  77. %postun -n compat32-%{name} -p /sbin/ldconfig
  78. %files -f %{name}.lang
  79. %doc COPYING AUTHORS README
  80. %{_libexecdir}/at-spi2-registryd
  81. %{_sysconfdir}/at-spi2
  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. %files devel
  89. %{_libdir}/libatspi.so
  90. %{_datadir}/gtk-doc/html/libatspi
  91. %{!?with_firstbuild:%{_datadir}/gir-1.0/Atspi-2.0.gir}
  92. %{_includedir}/at-spi-2.0
  93. %{_libdir}/pkgconfig/atspi-2.pc
  94. # compat32
  95. %if %{build_compat32}
  96. %files -n compat32-%{name}
  97. %defattr(-,root,root,-)
  98. %{_libdir}/libatspi.so.*
  99. %files -n compat32-%{name}-devel
  100. %defattr(-,root,root,-)
  101. %{_libdir}/libatspi.so
  102. %endif
  103. %changelog
  104. * Thu Oct 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.1-1
  105. - new upstream release
  106. * Sat Mar 28 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.16.0-1
  107. - new upstream release
  108. * Sun Nov 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.1-1
  109. - new upstream release
  110. * Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.0-1
  111. - new upstream release
  112. * Fri Mar 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.12.0-1
  113. - new upstream release
  114. * Sun Nov 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.2-1
  115. - new upstream release
  116. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.1-1
  117. - new upstream release
  118. * Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.0-1
  119. - new upstream release
  120. * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.3-1
  121. - new upstream release
  122. * Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.2-1
  123. - new upstream release
  124. * Wed Oct 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.1-1
  125. - new upstream release
  126. * Sat Oct 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-2
  127. - create compat32 sub packages
  128. * Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
  129. - new upstream release
  130. * Sun May 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.2-1
  131. - new upstream release
  132. * Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.1-1
  133. - new upstream release
  134. * Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.2-1
  135. - new upstream release
  136. * Fri Oct 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.1-1
  137. - new upstream release
  138. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
  139. - new upstream release
  140. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.92-1
  141. - initial build for Vine Linux
  142. * Tue Sep 6 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.91-1
  143. - Update to 2.1.91
  144. * Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.4-1
  145. - Update to 2.1.4
  146. * Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.2-1
  147. - Update to 2.1.2
  148. * Wed May 11 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.1-1
  149. - Update to 2.1.1
  150. * Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.1-1
  151. - Update to 2.0.1
  152. * Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.0-1
  153. - Update to 2.0.0
  154. * Fri Apr 1 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.93-2
  155. - Fix 30 second wait during login (#691995)
  156. * Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.93-1
  157. - Update to 1.91.93
  158. * Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.92-1
  159. - Update to 2.91.92
  160. * Wed Mar 9 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.91-2
  161. - Fix a crash on logout
  162. * Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.91-1
  163. - Update to 1.91.91
  164. * Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.90-1
  165. - Update to 1.91.90
  166. * Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6.1-2
  167. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  168. * Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6.1-1
  169. - Update to 1.91.6.1
  170. * Tue Feb 1 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1
  171. - Update to 1.91.6
  172. * Fri Jan 21 2011 Christopher Aillon <caillon@redhat.com> - 1.91.5-2
  173. - Add gobject-introspection support
  174. * Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1
  175. - Update to 1.91.5
  176. * Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.2-1
  177. - Update 1.91.2
  178. * Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1
  179. - Update to 1.91.0
  180. * Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1
  181. - Update to 0.4.0
  182. * Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91-1
  183. - Update to 0.3.91
  184. * Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
  185. - Update to 0.3.90
  186. * Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.4-1
  187. - Update to 0.3.4
  188. * Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.3-1
  189. - Update to 0.3.3
  190. * Tue Jun 1 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-2
  191. - Don't relocate the dbus a11y stack
  192. * Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
  193. - Update to 0.3.2
  194. * Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1-1
  195. - Update to 0.3.1
  196. * Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1
  197. - Update to 0.1.8
  198. * Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
  199. - Update to 0.1.7
  200. * Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1
  201. - Update to 0.1.6
  202. * Wed Jan 20 2010 Matthias Clasen <mlasen@redhat.com> - 0.1.5-2
  203. - Specify the right location for the dbus daemon
  204. * Sat Jan 16 2010 Matthias Clasen <mlasen@redhat.com> - 0.1.5-1
  205. - Update to 0.1.5
  206. * Tue Dec 22 2009 Matthias Clasen <mlasen@redhat.com> - 0.1.4-1
  207. - Update to 0.1.4
  208. * Fri Dec 4 2009 Matthias Clasen <mlasen@redhat.com> - 0.1.3-1
  209. - Initial packaging