pyatspi-vl.spec 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
  2. %{!?python3_sitelib: %global python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
  3. %global debug_package %{nil}
  4. Name: pyatspi
  5. Version: 2.20.2
  6. Release: 1%{?_dist_release}
  7. Summary: Python bindings for at-spi
  8. Group: Development/Languages
  9. License: LGPLv2 and GPLv2
  10. URL: http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
  11. #VCS: git:git://git.gnome.org/pyatspi
  12. Source0: http://download.gnome.org/sources/pyatspi/2.20/%{name}-%{version}.tar.xz
  13. BuildRequires: python
  14. BuildRequires: pygobject3-devel >= 2.90.1
  15. BuildRequires: libX11-devel
  16. BuildRequires: libSM-devel
  17. Requires: at-spi2-core
  18. Requires: pygobject3
  19. BuildArch: noarch
  20. Vendor: Project Vine
  21. Distribution: Vine Linux
  22. Packager: Takemikaduchi
  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 python client library for at-spi.
  32. %package -n python3-pyatspi
  33. Summary: Python3 bindings for at-spi
  34. Group: Development/Languages
  35. BuildRequires: python3-pygobject
  36. Requires: at-spi2-core
  37. Requires: python3-pygobject
  38. BuildArch: noarch
  39. Obsoletes: python3-pyatspi < 2.17.0
  40. %description -n python3-pyatspi
  41. at-spi allows assistive technologies to access GTK-based
  42. applications. Essentially it exposes the internals of applications for
  43. automation, so tools such as screen readers, magnifiers, or even
  44. scripting interfaces can query and interact with GUI controls.
  45. This version of at-spi is a major break from previous versions.
  46. It has been completely rewritten to use D-Bus rather than
  47. ORBIT / CORBA for its transport protocol.
  48. This package includes a python3 client library for at-spi.
  49. %prep
  50. %setup -q
  51. # python3
  52. rm -rf ../python3
  53. cp -a . ../python3
  54. %build
  55. %configure \
  56. --with-python=python2
  57. make
  58. # python3
  59. pushd ../python3
  60. %configure \
  61. --with-python=python3
  62. make
  63. %install
  64. make install DESTDIR=$RPM_BUILD_ROOT
  65. # python3
  66. pushd ../python3
  67. make install DESTDIR=$RPM_BUILD_ROOT
  68. %files
  69. %defattr(644, root, root, 755)
  70. %doc COPYING COPYING.GPL AUTHORS README
  71. %{python_sitelib}/pyatspi
  72. %files -n python3-pyatspi
  73. %defattr(644, root, root, 755)
  74. %doc COPYING COPYING.GPL AUTHORS README
  75. %{python3_sitelib}/pyatspi
  76. %changelog
  77. * Sun Jul 17 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.20.2-1
  78. - new upstream release
  79. * Thu Nov 12 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.0-2
  80. - fix spec file
  81. * Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.0-1
  82. - new upstream release
  83. - create python3-pyatspi subpackage
  84. * Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.16.0-1
  85. - new upstream release
  86. * Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.0-1
  87. - new upstream release
  88. * Sat Mar 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.12.0-1
  89. - new upstream release
  90. * Sun Jan 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.0-2
  91. - rebuild with VineSeed environment
  92. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.0-1
  93. - new upstream release
  94. * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.0-1
  95. - new upstream release
  96. * Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
  97. - new upstream release
  98. * Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.0-1
  99. - new upstream release
  100. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.1-2
  101. - rebuild with python-2.7.2
  102. * Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.1-1
  103. - new upstream release
  104. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
  105. - new upstream release
  106. - add BuildRequires: libX11-devel, libSM-devel
  107. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.91-1
  108. - initial build for Vine Linux
  109. * Wed Aug 31 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.90-1
  110. - Update to 2.1.90
  111. * Wed Aug 17 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.5-1
  112. - Update to 2.1.5
  113. * Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.4-1
  114. - Update to 2.1.4
  115. * Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.2-1
  116. - Update to 2.1.2
  117. * Wed May 11 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.1-1
  118. - Update to 2.1.1
  119. * Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.1-1
  120. - Update to 2.0.1
  121. * Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.0-1
  122. - Update to 2.0.0
  123. * Tue Mar 22 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.92-1
  124. - Update to 1.91.92
  125. * Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.91-1
  126. - Update to 1.91.91
  127. * Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.90-1
  128. - Update to 1.91.90
  129. * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6-2
  130. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  131. * Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1
  132. - Update to 1.91.6
  133. * Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1
  134. - Update to 1.91.5
  135. * Thu Dec 2 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.3-1
  136. - Update to 1.91.3
  137. * Tue Oct 5 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1
  138. - Update to 1.91.0
  139. * Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1
  140. - Update to 0.4.0
  141. * Mon Sep 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91-2
  142. - Require python-xlib and and gnome-python2-gconf (#635484)
  143. * Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91-1
  144. - Update to 0.3.91
  145. * Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
  146. - Update to 0.3.90
  147. * Mon Aug 2 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.6-1
  148. - Update to 0.3.6
  149. * Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.4-2
  150. - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
  151. * Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.4-1
  152. - Update to 0.3.4
  153. * Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.3-1
  154. - Update to 0.3.3
  155. * Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
  156. - Update to 0.3.2
  157. * Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1.1-1
  158. - Update to 0.3.1.1
  159. * Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1
  160. - Update to 0.1.8
  161. * Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
  162. - Update to 0.1.7
  163. * Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1
  164. - Update to 0.1.6
  165. * Wed Feb 3 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-2
  166. - Relocate
  167. * Sat Jan 16 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1
  168. - Update to 0.1.5
  169. * Thu Jan 7 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.4-3
  170. - Incorporate review feedback
  171. * Thu Jan 7 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.4-2
  172. - Fix License field
  173. - Change CORBA/DBus switching method
  174. * Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.4-1
  175. - Update to 0.1.4
  176. * Sat Dec 5 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.3-1
  177. - Initial packaging