2014-08-19 21:32:03 +00:00
|
|
|
|
%if 0%{?fedora} > 12
|
2013-07-25 15:52:37 +00:00
|
|
|
|
%global with_python3 1
|
|
|
|
|
%else
|
|
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Name: python-cffi
|
2015-06-16 14:52:34 +00:00
|
|
|
|
Version: 1.1.2
|
2015-06-18 18:43:41 +00:00
|
|
|
|
Release: 2%{?dist}
|
2013-07-25 15:52:37 +00:00
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Summary: Foreign Function Interface for Python to call C code
|
2015-06-16 14:52:34 +00:00
|
|
|
|
License: MIT
|
2013-07-25 15:52:37 +00:00
|
|
|
|
URL: http://cffi.readthedocs.org/
|
|
|
|
|
Source0: http://pypi.python.org/packages/source/c/cffi/cffi-%{version}.tar.gz
|
|
|
|
|
|
|
|
|
|
BuildRequires: libffi-devel python-sphinx
|
|
|
|
|
BuildRequires: python2-devel python-setuptools Cython python-pycparser
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
BuildRequires: python3-devel python3-setuptools python3-Cython python3-pycparser
|
|
|
|
|
%endif # if with_python3
|
|
|
|
|
|
2013-08-13 16:39:04 +00:00
|
|
|
|
Requires: python-pycparser
|
|
|
|
|
|
2013-07-25 15:52:37 +00:00
|
|
|
|
# Do not check .so files in the python_sitelib directory
|
|
|
|
|
# or any files in the application's directory for provides
|
|
|
|
|
%global __provides_exclude_from ^(%{python_sitearch}|%{python3_sitearch})/.*\\.so$
|
|
|
|
|
|
|
|
|
|
%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.
|
|
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
%package -n python3-cffi
|
|
|
|
|
Summary: Foreign Function Interface for Python 3 to call C code
|
|
|
|
|
Group: Development/Libraries
|
2013-08-13 16:39:04 +00:00
|
|
|
|
Requires: python3-pycparser
|
2013-07-25 15:52:37 +00:00
|
|
|
|
|
|
|
|
|
%description -n python3-cffi
|
|
|
|
|
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.
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
|
Summary: Documentation for CFFI
|
|
|
|
|
Group: Documentation
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
|
Documentation for CFFI, the Foreign Function Interface for Python.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n cffi-%{version}
|
|
|
|
|
|
2013-07-25 18:04:53 +00:00
|
|
|
|
%if 0%{?with_python3}
|
2013-07-25 15:52:37 +00:00
|
|
|
|
rm -rf %{py3dir}
|
|
|
|
|
cp -a . %{py3dir}
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
pushd %{py3dir}
|
|
|
|
|
%{__python3} setup.py build
|
|
|
|
|
popd
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
|
%{__python} setup.py build
|
|
|
|
|
cd doc
|
|
|
|
|
make html
|
|
|
|
|
rm build/html/.buildinfo
|
|
|
|
|
|
|
|
|
|
#%check
|
|
|
|
|
## The following test procedure works when I run it manually, but fails
|
|
|
|
|
## from rpmbuild, complaining that it can't import _cffi_backend, and I'm
|
|
|
|
|
## not sure how to make it work
|
|
|
|
|
#python setup_base.py build
|
|
|
|
|
#PYTHONPATH=build/lib.linux-* py.test c/ testing/
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
|
pushd %{py3dir}
|
|
|
|
|
%{__python3} setup.py install --skip-build --prefix=%{_prefix} --root %{buildroot}
|
|
|
|
|
popd
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
%{__python} setup.py install --skip-build --prefix=%{_prefix} --root %{buildroot}
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc LICENSE PKG-INFO
|
|
|
|
|
%{python_sitearch}/*
|
|
|
|
|
|
2013-07-25 18:04:53 +00:00
|
|
|
|
%if 0%{?with_python3}
|
2013-07-25 15:52:37 +00:00
|
|
|
|
%files -n python3-cffi
|
|
|
|
|
%doc LICENSE PKG-INFO
|
|
|
|
|
%{python3_sitearch}/*
|
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
|
%doc doc/build/html
|
|
|
|
|
|
|
|
|
|
%changelog
|
2015-06-18 18:43:41 +00:00
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.2-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
|
2015-06-16 14:52:34 +00:00
|
|
|
|
* Tue Jun 16 2015 Nathaniel McCallum <npmccallum@redhat.com> - 1.1.2-2
|
|
|
|
|
- Update to 1.1.2
|
|
|
|
|
- Fix license
|
|
|
|
|
|
2014-08-19 21:32:03 +00:00
|
|
|
|
* Tue Aug 19 2014 Eric Smith <spacewar@gmail.com> 0.8.6-1
|
|
|
|
|
- Update to latest upstream.
|
|
|
|
|
- No python3 in el7.
|
|
|
|
|
|
2014-08-17 20:59:10 +00:00
|
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
|
2014-06-07 19:02:32 +00:00
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
|
2014-05-12 15:09:02 +00:00
|
|
|
|
* Mon May 12 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.8.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
|
2014-02-27 04:00:16 +00:00
|
|
|
|
* Wed Feb 26 2014 Eric Smith <spacewar@gmail.com> 0.8.1-1
|
|
|
|
|
- Update to latest upstream.
|
|
|
|
|
|
|
|
|
|
* Tue Aug 13 2013 Eric Smith <spacewar@gmail.com> 0.6-5
|
2013-08-13 16:39:04 +00:00
|
|
|
|
- Add Requires of python{,3}-pycparser.
|
|
|
|
|
|
2014-02-27 04:00:16 +00:00
|
|
|
|
* Thu Jul 25 2013 Eric Smith <spacewar@gmail.com> 0.6-4
|
2013-07-25 18:04:53 +00:00
|
|
|
|
- Fix broken conditionals in spec (missing question marks), needed for el6.
|
|
|
|
|
|
2014-02-27 04:00:16 +00:00
|
|
|
|
* Tue Jul 23 2013 Eric Smith <spacewar@gmail.com> 0.6-3
|
2013-07-25 15:52:37 +00:00
|
|
|
|
- Add Python3 support.
|
|
|
|
|
|
2014-02-27 04:00:16 +00:00
|
|
|
|
* Mon Jul 22 2013 Eric Smith <spacewar@gmail.com> 0.6-2
|
2013-07-25 15:52:37 +00:00
|
|
|
|
- Better URL, and use version macro in Source0.
|
|
|
|
|
|
2014-02-27 04:00:16 +00:00
|
|
|
|
* Sun Jul 21 2013 Eric Smith <spacewar@gmail.com> 0.6-1
|
2013-07-25 15:52:37 +00:00
|
|
|
|
- initial version
|