# # Conditional build: %bcond_without python2 # CPython 2.x module %bcond_without python3 # CPython 3.x module %bcond_without doc # sphinx based documentation # Summary: Foreign Function Interface for Python 2 calling C code Summary(pl.UTF-8): Interfejs funkcji obcych (FFI) dla Pythona 2 wywołującego kod w C Name: python-cffi Version: 0.8.6 Release: 1 License: MIT Group: Libraries/Python Source0: https://pypi.python.org/packages/source/c/cffi/cffi-%{version}.tar.gz # Source0-md5: 474b5a68299a6f05009171de1dc91be6 URL: http://cffi.readthedocs.org/ BuildRequires: libffi-devel >= 3 BuildRequires: pkgconfig %if %{with python2} BuildRequires: python >= 1:2.6 BuildRequires: python-devel >= 1:2.6 %endif %if %{with python3} BuildRequires: python3 >= 1:3.2 BuildRequires: python3-devel >= 1:3.2 %endif BuildRequires: rpm-pythonprov BuildRequires: rpmbuild(macros) >= 1.612 %{?with_doc:BuildRequires: sphinx-pdg} Requires: python-modules Requires: python-pycparser BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %description Foreign Function Interface for Python calling C code. The aim of this project is to provide a convenient and reliable way of calling C code from Python without learning additional language or API. This package contains Python 2 module. %description -l pl.UTF-8 CFFI to interfejs funkcji obcych (FFI - foreign Function Interface) do wywoływania kodu w C z Pythona. Celem projektu jest dostarczenie wygodnego i wiarygodnego sposobu wywoływania kodu w C z Pythona bez potrzeby nauki dodatkowego języka lub API. Ten pakiet zawiera moduł Pythona 2. %package -n python3-cffi Summary: Foreign Function Interface for Python 3 calling C code Summary(pl.UTF-8): Interfejs funkcji obcych (FFI) dla Pythona 3 wywołującego kod w C Group: Libraries/Python Requires: python3-modules Requires: python3-pycparser %description -n python3-cffi Foreign Function Interface for Python calling C code. The aim of this project is to provide a convenient and reliable way of calling C code from Python without learning additional language or API. This package contains Python 3 module. %description -n python3-cffi -l pl.UTF-8 CFFI to interfejs funkcji obcych (FFI - foreign Function Interface) do wywoływania kodu w C z Pythona. Celem projektu jest dostarczenie wygodnego i wiarygodnego sposobu wywoływania kodu w C z Pythona bez potrzeby nauki dodatkowego języka lub API. Ten pakiet zawiera moduł Pythona 3. %prep %setup -q -n cffi-%{version} %build %if %{with python2} %{__python} setup.py build \ --build-base build-2 %endif %if %{with python3} %{__python3} setup.py build \ --build-base build-3 %endif %if %{with doc} %{__make} -C doc html %endif %install rm -rf $RPM_BUILD_ROOT %if %{with python2} %{__python} setup.py \ build \ --build-base build-2 \ install \ --root=$RPM_BUILD_ROOT \ --optimize=2 %py_postclean %endif %if %{with python3} %{__python3} setup.py \ build \ --build-base build-3 \ install \ --root=$RPM_BUILD_ROOT \ --optimize=2 %endif %clean rm -rf $RPM_BUILD_ROOT %if %{with python2} %files %defattr(644,root,root,755) %doc LICENSE %{?with_doc:doc/build/html/{*.html,*.js,_static}} %attr(755,root,root) %{py_sitedir}/_cffi_backend.so %dir %{py_sitedir}/cffi %{py_sitedir}/cffi/*.py[co] %{py_sitedir}/cffi-%{version}-py*.egg-info %endif %if %{with python3} %files -n python3-cffi %defattr(644,root,root,755) %doc LICENSE %{?with_doc:doc/build/html/{*.html,*.js,_static}} %attr(755,root,root) %{py3_sitedir}/_cffi_backend.cpython-*.so %dir %{py3_sitedir}/cffi %{py3_sitedir}/cffi/*.py %{py3_sitedir}/cffi/__pycache__ %{py3_sitedir}/cffi-%{version}-py*.egg-info %endif