%{!?python2_sitelib: %define python2_sitelib %(python2 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")} %{!?python3_sitelib: %define python3_sitelib %(python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())")} Summary: Interface for Python to call C code Name: python-cffi Version: 1.11.5 Release: 1%{?dist} Url: https://pypi.python.org/pypi/cffi License: MIT Group: Development/Languages/Python Vendor: VMware, Inc. Distribution: Photon Source0: https://pypi.python.org/packages/source/c/cffi/cffi-%{version}.tar.gz %define sha1 cffi=1686e6689a691414d3d22626c837adeee3996dd9 BuildRequires: python2 BuildRequires: python2-libs BuildRequires: python2-devel BuildRequires: python-setuptools BuildRequires: libffi-devel BuildRequires: python-pycparser %if %{with_check} BuildRequires: python-py BuildRequires: python-pytest %endif Requires: python2 Requires: python2-libs Requires: python-pycparser %description Foreign Function Interface for Python, providing a convenient and reliable way of calling existing C code from Python. The interface is based on LuaJIT’s FFI. %package -n python3-cffi Summary: python-cffi BuildRequires: python3 BuildRequires: python3-devel BuildRequires: python3-libs BuildRequires: python3-pycparser BuildRequires: python3-setuptools BuildRequires: python3-xml %if %{with_check} BuildRequires: python3-py BuildRequires: python3-pytest %endif Requires: python3 Requires: python3-libs Requires: python3-pycparser %description -n python3-cffi Python 3 version. %prep %setup -q -n cffi-%{version} rm -rf ../p3dir cp -a . ../p3dir %build python2 setup.py build pushd ../p3dir python3 setup.py build popd %install python2 setup.py install --prefix=%{_prefix} --root=%{buildroot} pushd ../p3dir python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} popd %check python2 setup.py test pushd ../p3dir python3 setup.py test popd %files %defattr(-,root,root) %{python2_sitelib}/* %files -n python3-cffi %defattr(-,root,root,-) %{python3_sitelib}/* %changelog * Sun Sep 09 2018 Tapas Kundu 1.11.5-1 - Update to version 1.11.5 * Mon Jul 17 2017 Divya Thaluru 1.10.0-3 - Added build time dependecies required during check * Wed Jun 07 2017 Xiaolin Li 1.10.0-2 - Add python3-setuptools and python3-xml to python3 sub package Buildrequires. * Mon Apr 03 2017 Rongrong Qiu 1.10.0-1 - Update to 1.10.0 * Thu Mar 23 2017 Xiaolin Li 1.9.1-1 - Updated to version 1.9.1. * Thu Feb 02 2017 Xiaolin Li 1.5.2-4 - Added python3 site-packages. * Mon Oct 03 2016 ChangLee 1.5.2-3 - Modified %check * Tue May 24 2016 Priyesh Padmavilasom 1.5.2-2 - GA - Bump release of all rpms * Tue Feb 23 2016 Harish Udaiya Kumar 1.5.2-1 - Updated to version 1.5.2 * Thu Jan 21 2016 Anish Swaminathan 1.5.0-1 - Upgrade version * Wed Nov 18 2015 Divya Thaluru 1.3.0-1 - nitial packaging for Photon