at-spi2-atk-vl.spec 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Name: at-spi2-atk
  3. Version: 2.38.0
  4. Release: 1%{?_dist_release}
  5. Summary: A GTK+ module that bridges ATK to D-Bus at-spi
  6. Group: desktop-gnome,accessibility
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. License: LGPLv2+
  10. URL: https://www.freedesktop.org/wiki/Accessibility/AT-SPI2/
  11. %global shortver %(echo %{version} | sed -e 's/\.[0-9]*$//')
  12. Source0: https://download.gnome.org/sources/%{name}/%{shortver}/%{name}-%{version}.tar.xz
  13. BuildRequires: meson
  14. BuildRequires: intltool
  15. BuildRequires: at-spi2-core-devel
  16. BuildRequires: dbus-devel
  17. BuildRequires: dbus-glib-devel
  18. BuildRequires: glib2-devel
  19. BuildRequires: libxml2-devel
  20. BuildRequires: atk-devel
  21. BuildRequires: libSM-devel
  22. Requires: at-spi2-core
  23. %description
  24. at-spi allows assistive technologies to access GTK-based
  25. applications. Essentially it exposes the internals of applications for
  26. automation, so tools such as screen readers, magnifiers, or even
  27. scripting interfaces can query and interact with GUI controls.
  28. This version of at-spi is a major break from previous versions.
  29. It has been completely rewritten to use D-Bus rather than
  30. ORBIT / CORBA for its transport protocol.
  31. This package includes a gtk-module that bridges ATK to the new
  32. D-Bus based at-spi.
  33. %package devel
  34. Summary: Development files for %{name}
  35. Summary(ja): %{name} の開発ファイル
  36. Group: programming
  37. Requires: %{name} = %{version}-%{release}
  38. Requires: glib2-devel
  39. %description devel
  40. The %{name}-devel package contains libraries and header files for
  41. developing applications that use %{name}.
  42. # compat32
  43. %package -n compat32-%{name}
  44. Summary: A GTK+ module that bridges ATK to D-Bus at-spi
  45. Group: desktop-gnome,accessibility,legacy
  46. Requires: %{name} = %{version}-%{release}
  47. Requires: compat32-at-spi2-core
  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. This package includes a gtk-module that bridges ATK to the new
  57. D-Bus based at-spi.
  58. %package -n compat32-%{name}-devel
  59. Summary: Development package for %{name}
  60. Group: programming,legacy
  61. Requires: compat32-%{name} = %{version}-%{release}
  62. Requires: %{name}-devel = %{version}-%{release}
  63. Requires: compat32-at-spi2-core-devel
  64. %description -n compat32-%{name}-devel
  65. Files for development with compat32-%{name}.
  66. %debug_package
  67. %prep
  68. %setup -q
  69. %build
  70. %meson \
  71. -Ddisable_p2p=false \
  72. -Dtests=false
  73. %meson_build
  74. %install
  75. %meson_install
  76. %files
  77. %defattr(-,root,root,-)
  78. %license COPYING
  79. %doc AUTHORS README
  80. %{_libdir}/libatk-bridge-2.0.so.*
  81. %dir %{_libdir}/gtk-2.0
  82. %dir %{_libdir}/gtk-2.0/modules
  83. %{_libdir}/gtk-2.0/modules/libatk-bridge.so
  84. %dir %{_libdir}/gnome-settings-daemon-3.0
  85. %dir %{_libdir}/gnome-settings-daemon-3.0/gtk-modules/
  86. %{_libdir}/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop
  87. %files devel
  88. %defattr(-,root,root,-)
  89. %{_includedir}/%{name}
  90. %{_libdir}/libatk-bridge-2.0.so
  91. %{_libdir}/pkgconfig/atk-bridge-2.0.pc
  92. # compat32
  93. %if %{build_compat32}
  94. %files -n compat32-%{name}
  95. %defattr(-,root,root,-)
  96. %{_libdir}/libatk-bridge-2.0.so.*
  97. %files -n compat32-%{name}-devel
  98. %defattr(-,root,root,-)
  99. %{_libdir}/libatk-bridge-2.0.so
  100. %endif
  101. %changelog
  102. * Fri Apr 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.38.0-1
  103. - new upstream release.
  104. - dropped ldconfig scriptlets.
  105. * Sat Aug 01 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.34.2-1
  106. - new upstream release.
  107. * Sun Feb 25 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.26.1-2
  108. - rebuilt for compat32-*.
  109. * Mon Jan 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.26.1-1
  110. - new upstream release
  111. * Thu Jul 14 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.20.1-1
  112. - new upstream release
  113. * Thu Oct 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.1-1
  114. - new upstream release
  115. * Sat Mar 28 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.16.0-1
  116. - new upstream release
  117. * Fri Sep 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.1-1
  118. - new upstream release
  119. * Sat Apr 19 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.12.1-1
  120. - new upstream release
  121. * Fri Mar 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.12.0-1
  122. - new upstream release
  123. * Sun Nov 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.2-1
  124. - new upstream release
  125. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.0-1
  126. - new upstream release
  127. * Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.1-1
  128. - new upstream release
  129. * Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.2-1
  130. - new upstream release
  131. * Wed Oct 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.1-1
  132. - new upstream release
  133. * Sat Oct 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-2
  134. - create compat32 sub packages
  135. * Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
  136. - new upstream release
  137. - remove BuildRequires: gtk2-devel
  138. - create -devel subpackage
  139. * Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.0-1
  140. - new upstream release
  141. * Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.2-1
  142. - new upstream release
  143. * Fri Oct 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.1-1
  144. - new upstream release
  145. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
  146. - new upstream release
  147. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.92-1
  148. - initial build for Vine Linux
  149. * Mon Sep 5 2011 Matthias Clasen <mclasen@redhat.com> 2.1.91-1
  150. - Update to 2.1.91
  151. * Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> 2.1.4-1
  152. - Update to 2.1.4
  153. * Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 2.0.1-1
  154. - Update to 2.0.1
  155. * Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> 2.0.0-1
  156. - Update to 2.0.0
  157. * Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> 1.91.93-1
  158. - Update to 1.91.93
  159. * Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> 1.91.92-1
  160. - Update to 1.91.92
  161. * Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> 1.91.91-1
  162. - Update to 1.91.91
  163. * Mon Feb 21 2011 Matthias Clasen <mclasen@redhat.com> 1.91.90-1
  164. - Update to 1.91.90
  165. * Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6-4
  166. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  167. * Mon Feb 07 2011 Bastien Nocera <bnocera@redhat.com> 1.91.6-3
  168. - Add upstream patches to fix crashers
  169. * Fri Feb 04 2011 Bastien Nocera <bnocera@redhat.com> 1.91.6-2
  170. - Revert crashy part of 1.91.6 release
  171. * Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1
  172. - Update to 1.91.6
  173. * Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1
  174. - Update to 1.91.5
  175. * Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.2-1
  176. - Update to 1.91.2
  177. * Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1
  178. - Update to 1.91.0
  179. * Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1
  180. - Update to 0.4.0
  181. * Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91.1-1
  182. - Update to 0.3.91.1
  183. * Fri Aug 27 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-2
  184. - Make the gtk module resident to prevent crashes
  185. * Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
  186. - Update to 0.3.90
  187. * Mon Aug 2 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.6-1
  188. - Update to 0.3.6
  189. * Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.5-1
  190. - Update to 0.3.5
  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. - Include gtk3 module
  196. - Drop gtk deps, since we don't want to depend on both gtk2 and gtk3;
  197. instead own the directories
  198. * Tue Jun 1 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-2
  199. - Don't relocate the dbus a11y stack
  200. * Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
  201. - Update to 0.3.2
  202. * Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1-1
  203. - Update to 0.3.1
  204. * Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1
  205. - Update to 0.1.8
  206. * Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
  207. - Update to 0.1.7
  208. * Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1
  209. - Update to 0.1.6
  210. * Sat Jan 16 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1
  211. - Update to 0.1.5
  212. * Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.4-1
  213. - Update to 0.1.4
  214. * Sat Dec 5 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.3-1
  215. - Initial packaging