Name: pykka Version: 0.13.0 Release: 1%{?dist} Summary: Python library that provides concurrency using actor model Group: Development/Libraries License: ASL 2.0 URL: http://jodal.github.com/pykka/ Source0: http://github.com/jodal/pykka/tarball/v0.13 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: python2-devel python-gevent python-sphinx BuildArch: noarch Requires: python-gevent %description The goal of Pykka is to provide easy to use concurrency abstractions for Python by using the actor model. Pykka provides an actor API with two different implementations: * ThreadingActor is built on the Python Standard Library’s threading and Queue modules, and has no dependencies outside Python itself. It plays well together with non-actor threads. * GeventActor is built on the gevent library. gevent is a coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop. It is generally faster, but doesn’t like playing with other threads. Much of the naming in Pykka is inspired by the Akka project which implements actors on the JVM. Though, Pykka does not aim to be a Python port of Akka. %prep %setup -q -c DIR=`ls -d jodal-pykka-*` mv $DIR/* ./ mv $DIR/.[a-zA-Z0-9]* ./ rmdir $DIR %build CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build cd docs make man %install rm -rf $RPM_BUILD_ROOT CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1 cp -a docs/_build/man/* $RPM_BUILD_ROOT%{_mandir}/man1/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %doc LICENSE README.rst %{python_sitelib}/Pykka* %{python_sitelib}/pykka %{_mandir}/man1/* %changelog * Wed Jan 4 2012 Jonathan Dieter - 0.13.0-1 - Initial release