From e671e5f65aa764d8def479fa680b22dfa7d99373 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 24 Oct 2015 15:26:45 +0200 Subject: [PATCH] Fix description in spec Signed-off-by: Igor Gnatenko --- python-gevent.spec | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/python-gevent.spec b/python-gevent.spec index affaa98..b11a0fb 100644 --- a/python-gevent.spec +++ b/python-gevent.spec @@ -5,7 +5,7 @@ Name: python-%{modname} Version: 1.1 -Release: 0.3.b6%{?dist} +Release: 0.4.b6%{?dist} Summary: A coroutine-based Python networking library License: MIT @@ -36,7 +36,17 @@ BuildRequires: python2-devel Requires: python-greenlet %description -n python2-%{modname} -%{description} +gevent is a coroutine-based Python networking library that uses greenlet to +provide a high-level synchronous API on top of libevent event loop. + +Features include: + + * convenient API around greenlets + * familiar synchronization primitives (gevent.event, gevent.queue) + * socket module that cooperates + * WSGI server on top of libevent-http + * DNS requests done through libevent-dns + * monkey patching utility to get pure Python modules to cooperate %package -n python3-%{modname} Summary: %{summary} @@ -45,7 +55,17 @@ BuildRequires: python3-devel Requires: python3-greenlet %description -n python3-%{modname} -%{description} +gevent is a coroutine-based Python networking library that uses greenlet to +provide a high-level synchronous API on top of libevent event loop. + +Features include: + + * convenient API around greenlets + * familiar synchronization primitives (gevent.event, gevent.queue) + * socket module that cooperates + * WSGI server on top of libevent-http + * DNS requests done through libevent-dns + * monkey patching utility to get pure Python modules to cooperate %prep %autosetup -n %{modname}-%{realver} @@ -76,6 +96,9 @@ find %{buildroot} -name '*.so' -exec chmod 755 {} ';' %{python3_sitearch}/%{modname}* %changelog +* Sat Oct 24 2015 Igor Gnatenko - 1.1-0.4.b6 +- Fix description in spec + * Sun Oct 18 2015 Igor Gnatenko - 1.1-0.3.b6 - Update to 1.1b6 (RHBZ #1272717)