%{!?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: 2%{?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
BuildRequires: python3
BuildRequires: python3-devel
BuildRequires: python3-libs
BuildRequires: python3-pycparser
BuildRequires: python3-setuptools
BuildRequires: python3-xml
%if %{with_check}
BuildRequires: openssl-devel
BuildRequires: curl-devel
%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
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
easy_install_2=$(ls /usr/bin |grep easy_install |grep 2)
$easy_install_2 pytest
python2 setup.py test
pushd ../p3dir
easy_install_3=$(ls /usr/bin |grep easy_install |grep 3)
$easy_install_3 pytest
python3 setup.py test
popd
%files
%defattr(-,root,root)
%{python2_sitelib}/*
%files -n python3-cffi
%defattr(-,root,root,-)
%{python3_sitelib}/*
%changelog
* Thu Nov 15 2018 Tapas Kundu <tkundu@vmware.com> 1.11.5-2
- Fixed make check errors.
* Sun Sep 09 2018 Tapas Kundu <tkundu@vmware.com> 1.11.5-1
- Update to version 1.11.5
* Mon Jul 17 2017 Divya Thaluru <dthaluru@vmware.com> 1.10.0-3
- Added build time dependecies required during check
* Wed Jun 07 2017 Xiaolin Li <xiaolinl@vmware.com> 1.10.0-2
- Add python3-setuptools and python3-xml to python3 sub package Buildrequires.
* Mon Apr 03 2017 Rongrong Qiu <rqiu@vmware.com> 1.10.0-1
- Update to 1.10.0
* Thu Mar 23 2017 Xiaolin Li <xiaolinl@vmware.com> 1.9.1-1
- Updated to version 1.9.1.
* Thu Feb 02 2017 Xiaolin Li <xiaolinl@vmware.com> 1.5.2-4
- Added python3 site-packages.
* Mon Oct 03 2016 ChangLee <changLee@vmware.com> 1.5.2-3
- Modified %check
* Tue May 24 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 1.5.2-2
- GA - Bump release of all rpms
* Tue Feb 23 2016 Harish Udaiya Kumar <hudaiyakumar@vmware.com> 1.5.2-1
- Updated to version 1.5.2
* Thu Jan 21 2016 Anish Swaminathan <anishs@vmware.com> 1.5.0-1
- Upgrade version
* Wed Nov 18 2015 Divya Thaluru <dthaluru@vmware.com> 1.3.0-1
- nitial packaging for Photon