[packages/python-gevent] - up to 1.1b2 (which is beta but support python3; introduce python3 packages)
arekm
arekm at pld-linux.org
Fri Aug 14 16:51:47 CEST 2015
commit 06c1ffe61b75cb299d3c2c43dad5678b8ae2c917
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Fri Aug 14 16:51:42 2015 +0200
- up to 1.1b2 (which is beta but support python3; introduce python3 packages)
python-gevent.spec | 92 ++++++++++++++++++++++++++++++++++++++++++++++++------
1 file changed, 83 insertions(+), 9 deletions(-)
---
diff --git a/python-gevent.spec b/python-gevent.spec
index adb9e4c..b692883 100644
--- a/python-gevent.spec
+++ b/python-gevent.spec
@@ -10,29 +10,40 @@
%bcond_without tests # do not run tests
%bcond_with system_libev # build with system libev (more tests will fail)
%bcond_without system_c_ares # build with system c_ares
+%bcond_without python2 # CPython 2.x module
+%bcond_without python3 # CPython 3.x module
%define module gevent
Summary: A coroutine-based Python networking library
Name: python-%{module}
-Version: 1.0.2
+Version: 1.1b2
Release: 1
License: MIT
Group: Development/Languages
Source0: http://pypi.python.org/packages/source/g/gevent/%{module}-%{version}.tar.gz
-# Source0-md5: 117f135d57ca7416203fba3720bf71c1
+# Source0-md5: 66a0da28e731ede2cf0422fc0a63f873
Patch0: known_failures-pld.patch
URL: http://www.gevent.org/
%{?with_system_c_ares:BuildRequires: c-ares-devel >= 1.10.0}
%{?with_system_libev:BuildRequires: libev-devel >= 4.11}
#BuildRequires: python-Cython
+%if %{with python2}
BuildRequires: python-devel
%if %{with tests}
BuildRequires: python-devel-src
BuildRequires: python-greenlet >= 0.3.2
BuildRequires: python-test
-BuildRequires: rpmbuild(macros) >= 1.688
+%endif
+%endif
+%if %{with python3}
+BuildRequires: python3-devel
+%if %{with tests}
+BuildRequires: python3-greenlet >= 0.3.2
+BuildRequires: python3-test
+%endif
%endif
BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.688
Requires: python-greenlet >= 0.3.2
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -49,6 +60,24 @@ Features include:
- Ability to use standard library and 3rd party modules written for
standard blocking sockets
+%package -n python3-%{module}
+Summary: A coroutine-based Python networking library
+Group: Libraries/Python
+Requires: python-greenlet >= 0.3.2
+
+%description -n python3-%{module}
+gevent is a coroutine-based Python networking library.
+
+Features include:
+
+- Fast event loop based on libev.
+- Lightweight execution units based on greenlet.
+- Familiar API that re-uses concepts from the Python standard library.
+- Cooperative sockets with SSL support.
+- DNS queries performed through c-ares or a threadpool.
+- Ability to use standard library and 3rd party modules written for
+ standard blocking sockets
+
%prep
%setup -q -n %{module}-%{version}
%patch0 -p1
@@ -58,33 +87,63 @@ Features include:
# (BR: python-Cython must be enabled then too)
# ln -s Makefile.ext Makefile
+%if %{with python2}
CC="%{__cc}" \
CFLAGS="%{rpmcflags}" \
%{?with_system_libev:LIBEV_EMBED=false} \
%{?with_system_c_ares:CARES_EMBED=false} \
-%{__python} setup.py build
+%{__python} setup.py build --build-base build-2
%if %{with tests}
cd greentest
-PYTHONPATH=.. python testrunner.py --config ../known_failures.py
+PYTHONPATH=$PWD/$(ls -1d ../build-2/lib.*) %{__python} testrunner.py --config ../known_failures.py
cd ..
%endif
+%endif
+
+%if %{with python3}
+CC="%{__cc}" \
+CFLAGS="%{rpmcflags}" \
+%{?with_system_libev:LIBEV_EMBED=false} \
+%{?with_system_c_ares:CARES_EMBED=false} \
+%{__python3} setup.py build --build-base build-3
+
+%if %{with tests}
+cd greentest
+PYTHONPATH=$PWD/$(ls -1d ../build-3/lib.*) %{__python3} testrunner.py --config ../known_failures.py
+cd ..
+%endif
+%endif
%install
rm -rf $RPM_BUILD_ROOT
+%if %{with python2}
%{?with_system_libev:LIBEV_EMBED=false} \
%{?with_system_c_ares:CARES_EMBED=false} \
-%{__python} setup.py install \
- --skip-build \
- --optimize=2 \
- --root=$RPM_BUILD_ROOT
+%{__python} setup.py \
+ build --build-base build-2 \
+ install --skip-build \
+ --optimize=2 \
+ --root=$RPM_BUILD_ROOT
%py_postclean
+%endif
+
+%if %{with python3}
+%{?with_system_libev:LIBEV_EMBED=false} \
+%{?with_system_c_ares:CARES_EMBED=false} \
+%{__python3} setup.py \
+ build --build-base build-3 \
+ install --skip-build \
+ --optimize=2 \
+ --root=$RPM_BUILD_ROOT
+%endif
%clean
rm -rf $RPM_BUILD_ROOT
+%if %{with python2}
%files
%defattr(644,root,root,755)
%doc LICENSE README.rst
@@ -97,3 +156,18 @@ rm -rf $RPM_BUILD_ROOT
%if "%{py_ver}" > "2.4"
%{py_sitedir}/%{module}-%{version}-py%{py_ver}.egg-info
%endif
+%endif
+
+%if %{with python3}
+%files -n python3-%{module}
+%defattr(644,root,root,755)
+%doc LICENSE README.rst
+%dir %{py3_sitedir}/%{module}
+%{py3_sitedir}/%{module}/__pycache__
+%{py3_sitedir}/%{module}/*.py*
+%attr(755,root,root) %{py3_sitedir}/%{module}/_semaphore*.so
+%attr(755,root,root) %{py3_sitedir}/%{module}/_util*.so
+%attr(755,root,root) %{py3_sitedir}/%{module}/ares*.so
+%attr(755,root,root) %{py3_sitedir}/%{module}/core*.so
+%{py3_sitedir}/%{module}-%{version}-py*.egg-info
+%endif
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python-gevent.git/commitdiff/06c1ffe61b75cb299d3c2c43dad5678b8ae2c917
More information about the pld-cvs-commit
mailing list