python-cffi-vl.spec 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. Name: python-cffi
  2. Version: 1.14.1
  3. Release: 1%{?_dist_release}
  4. Summary: Foreign Function Interface for Python to call C code
  5. Group: programming
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: MIT
  9. URL: https://pypi.org/project/cffi/
  10. Source0: cffi-%{version}.tar.gz
  11. BuildRequires: libffi-devel
  12. BuildRequires: gcc
  13. # For tests:
  14. BuildRequires: gcc-c++
  15. BuildRequires: python-rpm-macros
  16. BuildRequires: python2-rpm-macros
  17. BuildRequires: python-devel
  18. BuildRequires: python-setuptools
  19. BuildRequires: python-pycparser
  20. BuildRequires: python3-rpm-macros
  21. BuildRequires: python3-devel
  22. BuildRequires: python3-setuptools
  23. BuildRequires: python3-pycparser
  24. %{?python_provide:%python_provide python2-cffi}
  25. %?python_enable_dependency_generator
  26. %description
  27. Foreign Function Interface for Python, providing a convenient and
  28. reliable way of calling existing C code from Python. The interface is
  29. based on LuaJIT’s FFI.
  30. %package -n python3-cffi
  31. Summary: Foreign Function Interface for Python 3 to call C code
  32. Group: programming
  33. %{?python_provide:%python_provide python3-cffi}
  34. %description -n python3-cffi
  35. Foreign Function Interface for Python, providing a convenient and
  36. reliable way of calling existing C code from Python. The interface is
  37. based on LuaJIT’s FFI.
  38. %prep
  39. %autosetup -n cffi-%{version}
  40. %build
  41. %py2_build
  42. %py3_build
  43. %install
  44. %py2_install
  45. %py3_install
  46. %files
  47. %doc PKG-INFO
  48. %license LICENSE
  49. %{python2_sitearch}/cffi/
  50. %{python2_sitearch}/_cffi_backend.so
  51. %{python2_sitearch}/cffi-%{version}-py%{python_version}.egg-info/
  52. %files -n python3-cffi
  53. %doc PKG-INFO
  54. %license LICENSE
  55. %{python3_sitearch}/cffi/
  56. %{python3_sitearch}/_cffi_backend.*.so
  57. %{python3_sitearch}/cffi-%{version}-py%{python3_version}.egg-info/
  58. %changelog
  59. * Sat Aug 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.14.1-1
  60. - new upstream release.
  61. * Thu Apr 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.14.0-1
  62. - new upstream release.
  63. * Mon Nov 19 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.11.5-7
  64. - initial build for Vine Linux.
  65. * Wed Aug 22 2018 Miro Hrončok <mhroncok@redhat.com> - 1.11.5-6
  66. - Fix FTBFS (#1605627)
  67. * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.5-5
  68. - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
  69. * Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 1.11.5-4
  70. - Rebuilt for Python 3.7
  71. * Fri May 25 2018 Gwyn Ciesla <limburgher@gmail.com> - 1.11.5-3
  72. - Disable tests to fix mock-only FTBFS.
  73. * Fri Mar 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.11.5-2
  74. - Update Python 2 dependency declarations to new packaging standards
  75. (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
  76. * Fri Mar 02 2018 John Dulaney <jdulaney@Fedoraproject.org> - 1.11.2-1
  77. - New release 1.11.5
  78. * Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.11.2-3
  79. - Escape macros in %%changelog
  80. * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.2-2
  81. - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
  82. * Thu Oct 19 2017 John Dulaney <jdulaney@Fedoraproject.org> - 1.11.2-1
  83. - New release 1.11.0
  84. - Fix %%check
  85. * Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 1.11.0-2
  86. - Cleanup spec file conditionals
  87. * Sat Sep 23 2017 John Dulaney <jdulaney@Fedoraproject.org> - 1.11.0-1
  88. - New release 1.11.0
  89. * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-3
  90. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
  91. * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-2
  92. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
  93. * Tue Apr 04 2017 John Dulaney <jdulaney@Fedoraproject.org> - 1.10.0-1
  94. - New release 1.10.0
  95. * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.1-2
  96. - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
  97. * Sat Jan 07 2017 John Dulaney <jdulaney@Fedoraproject.org> - 1.9.1-1
  98. - Update to latest upstream 1.9.1
  99. * Fri Jan 6 2017 Orion Poplawski <orion@cora.nwra.com> - 1.8.3-4
  100. - Modernize spec
  101. * Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.8.3-3
  102. - Rebuild for Python 3.6
  103. - Disable test dependencies
  104. * Thu Nov 03 2016 John Dulaney <jdulaney@Fedoraproject.org> - 1.8.3-2
  105. - Re-disable check
  106. * Sun Sep 18 2016 John Dulaney <jdulaney@Fedoraproject.org> - 1.8.3-1
  107. - Update to 1.8.3
  108. - Reenable check
  109. * Wed Sep 07 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.8.2-1
  110. - Update to 1.8.2
  111. * Tue Aug 09 2016 Nathaniel McCallum <npmccallum@redhat.com> - 1.7.0-3
  112. - Record installed files
  113. * Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-2
  114. - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
  115. * Thu Jun 23 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.7.0-1
  116. - Update to 1.7.0
  117. * Thu Apr 28 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.6.0-3
  118. - Switch Source0 to using pypi.io
  119. * Thu Apr 28 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.6.0-2
  120. - Update Source0 URL to account for pypi change
  121. * Thu Apr 21 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.6.0-1
  122. - Update to 1.6.0 (#1329203)
  123. * Mon Feb 15 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.5.2-1
  124. - Update to 1.5.2 (#1299272)
  125. * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
  126. - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
  127. * Mon Jan 18 2016 Nathaniel McCallum <npmccallum@redhat.com> - 1.5.0-1
  128. - Update to 1.5.0 (#1299272)
  129. * Mon Jan 11 2016 Nathaniel McCallum <npmccallum@redhat.com> - 1.4.2-2
  130. - Move python-cffi => python2-cffi
  131. * Tue Dec 22 2015 John Dulaney <jdulaney@fedoraproject.org> - 1.4.2-1
  132. - Update to 1.4.2 (#1293504)
  133. * Thu Dec 17 2015 John Dulaney <jdulaney@fedoraproject.org> - 1.4.1-1
  134. - Update to latest upstream release
  135. * Fri Dec 11 2015 John Dulaney <jdulaney@fedoraproject.org> - 1.3.1-1
  136. - Update to latest upstream release
  137. * Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 1.1.2-4
  138. - Rebuilt for Python3.5 rebuild
  139. * Wed Jul 15 2015 Parag Nemade <pnemade AT redhat DOT com> - 1.1.2-3
  140. - Modernize spec file
  141. - add missing source
  142. * Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-2
  143. - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
  144. * Tue Jun 16 2015 Nathaniel McCallum <npmccallum@redhat.com> - 1.1.2-2
  145. - Update to 1.1.2
  146. - Fix license
  147. * Tue Aug 19 2014 Eric Smith <spacewar@gmail.com> 0.8.6-1
  148. - Update to latest upstream.
  149. - No python3 in el7.
  150. * Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-4
  151. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
  152. * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-3
  153. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
  154. * Mon May 12 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.8.1-2
  155. - Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
  156. * Wed Feb 26 2014 Eric Smith <spacewar@gmail.com> 0.8.1-1
  157. - Update to latest upstream.
  158. * Tue Aug 13 2013 Eric Smith <spacewar@gmail.com> 0.6-5
  159. - Add Requires of python{,3}-pycparser.
  160. * Thu Jul 25 2013 Eric Smith <spacewar@gmail.com> 0.6-4
  161. - Fix broken conditionals in spec (missing question marks), needed for el6.
  162. * Tue Jul 23 2013 Eric Smith <spacewar@gmail.com> 0.6-3
  163. - Add Python3 support.
  164. * Mon Jul 22 2013 Eric Smith <spacewar@gmail.com> 0.6-2
  165. - Better URL, and use version macro in Source0.
  166. * Sun Jul 21 2013 Eric Smith <spacewar@gmail.com> 0.6-1
  167. - initial version