python-cffi/python-cffi.spec

250 lines
8.0 KiB
RPMSpec
Raw Normal View History

2017-09-27 15:07:01 +00:00
%if 0%{?fedora} || 0%{?rhel} >= 8
2013-07-25 15:52:37 +00:00
%global with_python3 1
%endif
Name: python-cffi
Version: 1.11.5
Release: 2%{?dist}
2013-07-25 15:52:37 +00:00
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: https://pypi.io/packages/source/c/cffi/cffi-%{version}.tar.gz
2013-07-25 15:52:37 +00:00
BuildRequires: libffi-devel python2-sphinx
#BuildRequires: python2-pytest python3-pytest
BuildRequires: python2-devel
BuildRequires: python2-setuptools
BuildRequires: python2-Cython
BuildRequires: python2-pycparser
BuildRequires: python2-pytest
2013-07-25 15:52:37 +00:00
%if 0%{?with_python3}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-Cython
BuildRequires: python3-pycparser
BuildRequires: python3-pytest
2013-07-25 15:52:37 +00:00
%endif # if with_python3
# 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 LuaJITs FFI.
2016-01-11 19:51:29 +00:00
%package -n python2-cffi
Summary: Foreign Function Interface for Python 3 to call C code
Requires: python2-pycparser
2016-01-11 19:51:29 +00:00
Obsoletes: python-cffi <= 1.4.2-1
%{?python_provide:%python_provide python2-cffi}
%description -n python2-cffi
Foreign Function Interface for Python, providing a convenient and
reliable way of calling existing C code from Python. The interface is
based on LuaJITs FFI.
2013-07-25 15:52:37 +00:00
%if 0%{?with_python3}
%package -n python3-cffi
Summary: Foreign Function Interface for Python 3 to call C code
Requires: python3-pycparser
2016-01-11 19:51:29 +00:00
%{?python_provide:%python_provide python3-cffi}
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 LuaJITs FFI.
%endif # with_python3
%package doc
Summary: Documentation for CFFI
BuildArch: noarch
Requires: python2-cffi = %{version}-%{release}
2013-07-25 15:52:37 +00:00
%description doc
Documentation for CFFI, the Foreign Function Interface for Python.
%prep
%setup -q -n cffi-%{version}
%build
%if 0%{?with_python3}
2017-01-06 22:39:00 +00:00
%py3_build
2013-07-25 15:52:37 +00:00
%endif # with_python3
2017-01-06 22:39:00 +00:00
%py2_build
2013-07-25 15:52:37 +00:00
cd doc
make html
rm build/html/.buildinfo
%check
%{__python3} setup_base.py build_ext -f -i
PYTHONPATH=build/lib.linux-* py.test-3 c/ testing/
%{__python2} setup_base.py build_ext -f -i
PYTHONPATH=build/lib.linux-* py.test c/ testing/
2013-07-25 15:52:37 +00:00
%install
%if 0%{?with_python3}
2017-01-06 22:39:00 +00:00
%py3_install \
2016-08-09 13:54:13 +00:00
--record %{buildroot}%{python3_sitearch}/cffi-%{version}-py%{python3_version}.egg-info/installed-files.txt
2013-07-25 15:52:37 +00:00
%endif # with_python3
2017-01-06 22:39:00 +00:00
%py2_install \
2016-08-09 13:54:13 +00:00
--record %{buildroot}%{python2_sitearch}/cffi-%{version}-py%{python2_version}.egg-info/installed-files.txt
2013-07-25 15:52:37 +00:00
2016-01-11 19:51:29 +00:00
%files -n python2-cffi
%doc PKG-INFO
%license LICENSE
2017-01-06 22:39:00 +00:00
%{python2_sitearch}/*
2013-07-25 15:52:37 +00:00
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 PKG-INFO
%license LICENSE
2013-07-25 15:52:37 +00:00
%{python3_sitearch}/*
%endif # with_python3
%files doc
%doc doc/build/html
%changelog
* Fri Mar 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.11.5-2
- Update Python 2 dependency declarations to new packaging standards
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
* Fri Mar 02 2018 John Dulaney <jdulaney@Fedoraproject.org> - 1.11.2-1
- New release 1.11.5
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.11.2-3
- Escape macros in %%changelog
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Thu Oct 19 2017 John Dulaney <jdulaney@Fedoraproject.org> - 1.11.2-1
- New release 1.11.0
- Fix %%check
2017-09-27 15:07:01 +00:00
* Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 1.11.0-2
- Cleanup spec file conditionals
2017-09-24 04:46:29 +00:00
* Sat Sep 23 2017 John Dulaney <jdulaney@Fedoraproject.org> - 1.11.0-1
- New release 1.11.0
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-04-04 19:21:52 +00:00
* Tue Apr 04 2017 John Dulaney <jdulaney@Fedoraproject.org> - 1.10.0-1
- New release 1.10.0
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Sat Jan 07 2017 John Dulaney <jdulaney@Fedoraproject.org> - 1.9.1-1
- Update to latest upstream 1.9.1
2017-01-06 22:39:00 +00:00
* Fri Jan 6 2017 Orion Poplawski <orion@cora.nwra.com> - 1.8.3-4
- Modernize spec
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.8.3-3
- Rebuild for Python 3.6
- Disable test dependencies
* Thu Nov 03 2016 John Dulaney <jdulaney@Fedoraproject.org> - 1.8.3-2
- Re-disable check
* Sun Sep 18 2016 John Dulaney <jdulaney@Fedoraproject.org> - 1.8.3-1
- Update to 1.8.3
- Reenable check
* Wed Sep 07 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.8.2-1
- Update to 1.8.2
2016-08-09 13:54:13 +00:00
* Tue Aug 09 2016 Nathaniel McCallum <npmccallum@redhat.com> - 1.7.0-3
- Record installed files
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-2
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
* Thu Jun 23 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.7.0-1
- Update to 1.7.0
* Thu Apr 28 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.6.0-3
- Switch Source0 to using pypi.io
* Thu Apr 28 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.6.0-2
- Update Source0 URL to account for pypi change
* Thu Apr 21 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.6.0-1
- Update to 1.6.0 (#1329203)
* Mon Feb 15 2016 John Dulaney <jdulaney@fedoraproject.org> - 1.5.2-1
- Update to 1.5.2 (#1299272)
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-01-18 14:33:54 +00:00
* Mon Jan 18 2016 Nathaniel McCallum <npmccallum@redhat.com> - 1.5.0-1
- Update to 1.5.0 (#1299272)
2016-01-11 19:51:29 +00:00
* Mon Jan 11 2016 Nathaniel McCallum <npmccallum@redhat.com> - 1.4.2-2
- Move python-cffi => python2-cffi
* Tue Dec 22 2015 John Dulaney <jdulaney@fedoraproject.org> - 1.4.2-1
- Update to 1.4.2 (#1293504)
* Thu Dec 17 2015 John Dulaney <jdulaney@fedoraproject.org> - 1.4.1-1
- Update to latest upstream release
* Fri Dec 11 2015 John Dulaney <jdulaney@fedoraproject.org> - 1.3.1-1
- Update to latest upstream release
2015-10-13 08:03:48 +00:00
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 1.1.2-4
- Rebuilt for Python3.5 rebuild
* Wed Jul 15 2015 Parag Nemade <pnemade AT redhat DOT com> - 1.1.2-3
- Modernize spec file
- add missing source
* 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.
* 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
* 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
* 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
- 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