From 3c6e9931f4a46ec526bd244fa52cdc1327f7da73 Mon Sep 17 00:00:00 2001 From: Erez Shinan Date: Jun 12 2011 13:31:01 +0000 Subject: Initial import (#678855). --- diff --git a/.gitignore b/.gitignore index e69de29..d999fb2 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/rpyc-3.0.7.tar.gz diff --git a/python-rpyc.spec b/python-rpyc.spec new file mode 100644 index 0000000..57c642a --- /dev/null +++ b/python-rpyc.spec @@ -0,0 +1,47 @@ +%define modname rpyc + +Name: python-%{modname} +Version: 3.0.7 +Release: 1 +Summary: A Transparent, Symmetrical Python Library for Distributed-Computing +URL: http://rpyc.wikidot.com/ +License: MIT +Group: Development/Libraries +Source: http://downloads.sourceforge.net/project/%{modname}/main/%{version}/%{modname}-%{version}.tar.gz +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +BuildRequires: python, python-devel +Requires: python + +%description +RPyC, or Remote Python Call, is a transparent and symmetrical python library +for remote procedure calls, clustering and distributed-computing. +RPyC makes use of object-proxies, a technique that employs python's dynamic +nature, to overcome the physical boundaries between processes and computers, +so that remote objects can be manipulated as if they were local. + +%prep +%setup -q -n %{modname}-%{version} + +%build +%{__python} setup.py build + +%install +%{__rm} -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root="%{buildroot}" --prefix="%{_prefix}" + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root) +%{python_sitelib}/rpyc/core/* +%{python_sitelib}/rpyc/utils/* +%{python_sitelib}/rpyc/__init__.py* +%{python_sitelib}/rpyc/license.py* +%{python_sitelib}/rpyc-*/* +%attr(755,root,root) %{python_sitelib}/rpyc/servers/* + +%changelog +* Sun Feb 20 2011 - Erez Shinan - 3.0.7-1 +- Initial release diff --git a/sources b/sources index e69de29..17900ed 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +49ad8821f990eaf74f483bb0387dd4bf rpyc-3.0.7.tar.gz